03 六月, 2009 15:53
$string = "11 22 33 44 55 66";
// " " 為要切割的基準點
$output = explode(" ", $string);
echo $output[0]; // 11
echo $output[1]; // 22
echo $output[2]; // 33
echo $output[3]; // 44
echo $output[4]; // 55
echo $output[5]; // 66
This page looks plain and unstyled because you're using a non-standard compliant browser. To see it in its best form, please visit upgrade to a browser that supports web standards. It's free and painless.
03 六月, 2009 15:53
$string = "11 22 33 44 55 66";
// " " 為要切割的基準點
$output = explode(" ", $string);