我需要保存$GLOBALS
到MySQL中的領域,但... $GLOBALS
是一個數組
當我和一些功能如嘗試
function array_to_string($array){
$string = '';
code...
$string .= code...
code...
return $string;
}
$string = array_to_string($GLOBALS);
這個「$string
」成長和壯大...(是無限的)
有什麼想法嗎?
您可以使用'json_encode()'或'的serialize()' – Xorifelse
其次,我建議在詢問之前多做一點研究。 – Xorifelse
你可以發佈樣本數組還是數組的一部分? –