当前位置:学者斋 >

有关explode的大全

php中利用explode函数分割字符串到数组
  • php中利用explode函数分割字符串到数组

  • 文章主要介绍了php中利用explode函数分割字符串到数组,需要的朋友可以参考下。分割字符串//利用explode函数分割字符串到数组复制代码代码如下:<?php$source="hello1,hello2,hello3,hello4,hello5";//按逗号分离字符串$hello=explode(&#39;,&#39;,$source);for($index=0;...
  • 4183