gpt4 book ai didi

php - 如何在 Codeigniter 中将 SQL 结果字符串转换为数组?

转载 作者:行者123 更新时间:2023-11-29 20:45:56 24 4
gpt4 key购买 nike

我需要将[图片名称]字符串转换为数组。怎么做?

enter image description here

最佳答案

转换你的 $array 1将 [picture_names] 本身转化为数组,可以使用“explode() ”函数。

array explode ( string $delimiter , string $string [, int $limit = PHP_INT_MAX ] )

即在您的具体示例中:

$results = $this->db->get()->result_array();
$exp_results = explode(',', $results);

这应该给出一个这样的数组:

$exp_results = Array (
0 => 21
1 => 22
2 => 25
3 => 27
4 => .... etc
)

关于php - 如何在 Codeigniter 中将 SQL 结果字符串转换为数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38429692/

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