gpt4 book ai didi

php - 将整数转换为数组

转载 作者:行者123 更新时间:2023-12-01 00:30:41 26 4
gpt4 key购买 nike

我正在使用(MySQL:id 是 int 数据类型)

GROUP_CONCAT(id) AS ids 
Example output = 1,2,3,4,5;

然后将返回的内容转换为数组,但它总是以 blob 形式返回,我需要将整数单独拆分。

Array
(
[0] => 1,2,3,4,5
)

有什么想法吗?

非常感谢

最佳答案

$numbers = explode(',', $numbers[0]);

关于php - 将整数转换为数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6818621/

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