如何從列印表示中提取數組
給定一個數組,您可能想要使用 print_r() 函數列印其內容。但是,產生的輸出將是陣列的字串表示形式。
要將此字串轉換回數組,您可以使用自訂函數,如下所示:
function text_to_array($str) { // Initialize arrays $keys = array(); $values = array(); $output = array(); // Check if the input is an array if( substr($str, 0, 5) == 'Array' ) { // Parse the input $array_contents = substr($str, 7, -2); $array_contents = str_replace(array('[', ']', '=>'), array('#!#', '#?#', ''), $array_contents); $array_fields = explode("#!#", $array_contents); // Process each array field for($i = 0; $i < count($array_fields); $i++ ) { // Skip the first field (it's empty) if( $i != 0 ) { $bits = explode('#?#', $array_fields[$i]); if( $bits[0] != '' ) $output[$bits[0]] = $bits[1]; } } } return $output; }
透過使用數組的列印表示形式作為參數來呼叫此函數,您可以取得原始數組資料:
$array_string = print_r($original_array, true); $new_array = text_to_array($array_string);
以上是如何在 PHP 中將陣列的字串表示形式轉換回陣列?的詳細內容。更多資訊請關注PHP中文網其他相關文章!