當前位置:學者齋 >

有關explode的大全

php中利用explode函數分割字符串到數組
  • php中利用explode函數分割字符串到數組

  • 文章主要介紹了php中利用explode函數分割字符串到數組,需要的朋友可以參考下。分割字符串//利用explode函數分割字符串到數組複製代碼代碼如下:<?php$source="hello1,hello2,hello3,hello4,hello5";//按逗號分離字符串$hello=explode(&#39;,&#39;,$source);for($index=0;...
  • 4183