英[spl?t] 美[spl?t]
vt.Split; <slang>(???) Leave; share
n.divide;disagreement;crack;split
vi. ??? ; Crash;
adj. ??, ???, ???, ????
3?? ??: ?? ??: ?? ?? ??: ?? ?? ??: ??
PHP str_split() ?? ???
str_split() ?? ?? ??
php str_split() ??? ???? ??? ???? ? ?????. ??? str_split(string, length)?? ??? ?? ?? ???? ??? ?????. ??.
??: ???? ??? ??
??: ??str_split(string,length)
????:
???? | Description |
string | ??? ??? ? string |
length | ?? ??, ? ?? ??? ??? ?????. ???? 1???. ??? 1?? ??? false? ????, ??? ?? ???? ???? ?? ?? ???? ?????. ??? ??? ??? ?????. |
??: ??? ??? ?? ???? ???? ??? ????
PHP str_split() ?? ?
<?php $i = "helloworld"; $j = str_split($i,3);//指定分割的數(shù)組元素長度為3 print_r($j); //輸出數(shù)組用print_r函數(shù) ?>rerun ?????
??? ????? ??? "???? ??"??? ??????. ??? ????? ??? ??:
Array ( [0] => hel [1] => low [2] => orl [3] => d )