PHP Explode(),返回分隔符?

发布于 2024-12-08 03:01:42 字数 1469 浏览 0 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

酒废 2024-12-15 03:01:42
array explode ( string $delimiter , string $string [, int $limit ] )

分隔符第一个,字符串第二个

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

Delimiter first, string second.

甩你一脸翔 2024-12-15 03:01:42

切换参数。它的第一个参数是分隔符,第二个参数是字符串:

$inserts = explode('][', $the_inserts);

Switch the parameters. It's delimiter first and string as second parameter:

$inserts = explode('][', $the_inserts);
初懵 2024-12-15 03:01:42

它应该是 $inserts =explode("][",$the_inserts );

it should be $inserts = explode("][",$the_inserts );

风月客 2024-12-15 03:01:42

我自己记不住每个函数的参数,所以就去php.net网站搜索explode函数。

I myself cannot remember the parameters for every function, so just go to the php.net website and search for the explode function.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文