gpt4 book ai didi

PHP Implode 返回单个条目

转载 作者:行者123 更新时间:2023-11-29 12:33:13 25 4
gpt4 key购买 nike

我试图在脚本中使用 implode() 将 SQL 查询的结果作为字符串返回,以便我可以将其插入到另一个表中,但是每当我设法让 implode 返回任何内容时,它只会返回即使查询返回多个结果,也只能得到一个结果。

注意:我的 PHP 不是最强的,我正在使用预先存在的代码并重新编写它,这就是为什么很多代码看起来像是用于 JSON API 的原因。

$rows = $stmt->fetchAll();


if ($rows) {
$response["success"] = 1;
$response["message"] = "Events Scheduled!";
$response["events"] = array();

foreach ($rows as $row) {
$post = array();
$post["id"] = $row["id"];
$post["message"] = $row["message"];
$post["pin"] = $row["pin"];

array_push($response["events"], $post);
$matstring=implode("', '",$post);
}
}

当回显时,我得到:

3', 'Test to check multiple entries are in array for when the check is made, this should be seen.', '12345

内爆的 $response['events'] 返回“Array, Array”,而我尝试过的其他所有内容都没有返回任何内容。我应该在哪里寻找其他条目?

最佳答案

我想你想要的是这样的:

$str = "'".implode(",'", $post)."'";
echo $str;

关于PHP Implode 返回单个条目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27176333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com