我想在數組中使用變量字符串,如我保存的數組值,任何文件或文檔或變量,我想在數組中使用它,但我沒有這樣做。在數組中使用變量字符串php
$var = "'title' => 'This is my title','name' => 'My name is John'";
$ar = array($var);
echo $ar['title'].'<br>'.$ar['name'];
錯誤我得到
Notice: Undefined index: title
Notice: Undefined index: name
看一看這個所以問題,也許它有助於你想要存檔:http://stackoverflow.com/questions/11267434/php-how-to-turn-a-string-that-contains-an-array-expression-in-an - 實際數組 – Bjoern 2015-02-07 09:25:41