今天小編就為大家分享一篇關(guān)于PHP中str_split()函數(shù)的用法講解,小編覺得內(nèi)容挺不錯的,現(xiàn)在分享給大家,具有很好的參考價值,需要的朋友一起跟隨小編來看看吧。
PHP str_split() 函數(shù)
實例
把字符串 "Hello" 分割到數(shù)組中:
- <?php
- print_r(str_split("Hello"));
- ?>
定義和用法
str_split()函數(shù)把字符串分割到數(shù)組中。
語法
str_split( _string,length_ )

實例 1
使用 length 參數(shù):
- <?php
- print_r(str_split("Hello",3));
- ?>
新聞熱點
疑難解答