This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(4)
分隔符第一个,字符串第二个。
Delimiter first, string second.
切换参数。它的第一个参数是分隔符,第二个参数是字符串:
Switch the parameters. It's delimiter first and string as second parameter:
它应该是
$inserts =explode("][",$the_inserts );
it should be
$inserts = explode("][",$the_inserts );
我自己记不住每个函数的参数,所以就去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.