程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php變量與數組的相互轉換(extract 與 compact)

php變量與數組的相互轉換(extract 與 compact)

編輯:關於PHP編程

在php中數組與變量相互轉換我們可使用到extract或compact函數哦,下面我來給大家利用這兩個函數來分享兩個實例吧。

compact 多個變量轉數組

 代碼如下 復制代碼

<?php
    //多個變量轉數組
    $name='phpff';
    $email='[email protected]';
    $info=compact('name','email');//傳遞變量名
    print_r($info);
    /*
    Array
    (
        [name] => phpff
        [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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved