我在mysql數據庫中有longtext列,並且想將其放入數組中。但爆炸返回我只有一個字符串。將長文本分解爲數組
$temp_array_links[] = $item->links; //array value: http://google.com/ http://test.com/ http://test1.com/
$temp_string = implode(" ", $temp_array_links); //convert array to string
$info_array_links = explode(" ", $test_string); //explode string
echo 'Your link: <a href="'. $info_array_links[$user_id--] .'">LINK</a>'; //should be http://google.com/ insted of http://google.com/ http://test.com/ http://test1.com/
這不是一個MySQL的問題。 – shmosel
數組(1){[0] =>字符串(58)「http://google.com/ http://test.com/ http://test1.com/」} – GONGOTA