萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> php變量與數組的相互轉換(extract 與 compact)

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

在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

copyright © 萬盛學電腦網 all rights reserved