close

$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

--

轉自 http://dreamtails.pixnet.net/blog/post/23683602

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 dizzy03 的頭像
    dizzy03

    碎碎念

    dizzy03 發表在 痞客邦 留言(0) 人氣()