php面试集锦
1在php中把字符串变成数组,用那个方法? (str="2|2|3|6|9|8"变成array=[2|2|3|6|9|8]) 字符串变数组 $arr=("|",$txt); 利用explod
php面试集锦