字1個 字2 字3 字4如何將項目列表轉換爲php數組?
等等...我怎樣才能把它轉換成一個PHP數組,這裏會有很多的項目,所以我不希望他們都寫出到手動一個數組,我知道必須有一個簡單的方法
我的意思是我必須做的
<?PHP
$items = array();
$items['word 1'];
$items['word 2'];
$items['word 3'];
$items['word 4'];
?>
更新了它的感謝
<?php
$items = "word1 word2 word3 word4";
$items = explode(" ", $items);
echo $items[0]; // word1
echo $items[1]; // word2
?>
thats usefule thanks – JasonDavis 2009-07-30 21:26:30