本文實例講述了php變量與數組相互轉換的方法。分享給大家供大家參考,具體如下:
在php中數組與變量相互轉換我們可使用到extract或compact函數,這裡就來給大家分析一下這兩個函數的用法。
compact 多個變量轉數組
<?php //多個變量轉數組 $name='jb51'; $email='[email protected]'; $info=compact('name','email');//傳遞變量名 print_r($info); /* Array ( [name] => jb51 [email] => [email protected] ) */ ?>
extract 數組轉多個變量
<?php //數組轉多個變量 $capitalcities['England'] = 'London'; $capitalcities['Scotland'] = 'Edinburgh'; $capitalcities['Wales'] = 'Cardiff'; extract($capitalcities);//轉變成三個變量 England,Scotland,Wales print $Wales;//Cardiff ?>
例:
<?php $my_array = array("a" => "Cat","b" => "Dog", "c" => "Horse"); extract($my_array); echo "$a = $a; $b = $b; $c = $c"; ?>
結果:
$a = Cat; $b = Dog; $c = Horse
更多關於PHP相關內容感興趣的讀者可查看本站專題:《php常用函數與技巧總結》、《PHP數組(Array)操作技巧大全》、《php字符串(string)用法總結》、《PHP錯誤與異常處理方法總結》、《PHP基本語法入門教程》、《php面向對象程序設計入門教程》、《php+mysql數據庫操作入門教程》及《php常見數據庫操作技巧匯總》
希望本文所述對大家PHP程序設計有所幫助。