gpt4 book ai didi

php - 在 PHP 中分解字符串

转载 作者:可可西里 更新时间:2023-10-31 23:53:11 25 4
gpt4 key购买 nike

我如何分解这个字符串 '||25||34||73||94||116||128'我需要一个像这样的数组

array (
0 => '25',
1 => '34',
2 => '73',
3 => '94',
4 => '116',
5 => '128'
)

explode (“||”,$数组);对我没用,我得到了这个数组

array (
0 => '',
1 => '25',
2 => '34',
3 => '73',
4 => '94',
5 => '116',
6 => '128',
)

最佳答案

$array = explode('||', trim($string, '|'));

关于php - 在 PHP 中分解字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2476817/

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