在php中explode中起什么作用?
作用:把字符串打散為數(shù)組
如一個(gè)字符串為:123,123,456
那么使用explode函數(shù)后,會(huì)變成一個(gè)數(shù)組arr[0]=123
arr[1]=123
arr[2]=456
在php中explode中起什么作用?
作用:把字符串打散為數(shù)組
如一個(gè)字符串為:123,123,456
那么使用explode函數(shù)后,會(huì)變成一個(gè)數(shù)組arr[0]=123
arr[1]=123
arr[2]=456