while($row = mysql_fetch_array($result))
此刻我的$ row ['content']裏面有四個字符串,我怎麼才能讓它們進入數組中的單獨對象?
如0>「第一個」
1>「第二個字符串」 等等
此刻他們都捆綁成一個似乎...但我需要他們分隔在一個數組中。
我是PHP的新手,並花了很多時間試圖找出如何做到這一點。
在此先感謝。
print_r($ row ['content']);
返回:
的hello world另一個oneand另一個...更多即將... $行的回報
VAR轉儲:
陣列(4){[0] =>字符串(1)「1」[「id」] =>字符串(1)「1」[1] =>字符串(12)「hello world!」 [「content」] => string(12)「hello world!」 } array [4] {[0] => string(1)「2」[「id」] => string(1)「2」[1] => string(11)「another one」[「content」] => string(11)「another one」} array(4){[0] => string(1)「3」[「id」] => string(1)「3」[1] => string(18 )「和另一個...」[「content」] => string(18)「and another one ...」} array(4){[0] => string(1)「4」[「id」 ] => string(1)「4」[1] => string(14)「more coming ...」[「content」] => string(14)「more coming ...」}
var_dump($ row)'show? – 2012-07-28 18:02:12
'explode(「\ n」,$ row ['contents'])'? – 2012-07-28 18:03:24
你能否添加一些關於你的數據庫模式的信息? – Thomas 2012-07-28 18:04:33