gpt4 book ai didi

PHP:如何用逗号分解字符串,而不是引号内的逗号?

转载 作者:IT王子 更新时间:2023-10-28 23:59:36 25 4
gpt4 key购买 nike

我需要将我的字符串输入分解为逗号处的数组。但是,该字符串在引号内包含逗号。

输入:

$line = 'TRUE','59','A large number is 10,000';

$linearray = explode(",",$line);
$linemysql = implode("','",$linearray);

返回 $linemysql 为:

'TRUE','59','A large number is 10','000'

我怎样才能完成这个, explode 忽略引号内的逗号?

最佳答案

由于您使用的是逗号分隔值,因此您可以使用 str_getcsv .

str_getcsv($line, ",", "'");

将返回:

Array
(
[0] => TRUE
[1] => 59
[2] => A large number is 10,000
)

关于PHP:如何用逗号分解字符串,而不是引号内的逗号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5132533/

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