php中的list方法

2021-09-07 18:27:43 字數 1059 閱讀 2017

list

栗子一:

<?php

$info = array('coffee', 'brown', 'caffeine');

// 列出所有變數

list($drink, $color, $power) = $info;

echo "$drink is $color and $power makes it special.\n";

// 列出他們的其中乙個

list($drink, , $power) = $info;

echo "$drink has $power.\n";

// 或者讓我們跳到僅第三個

list( , , $power) = $info;

echo "i need $power!\n";

// list() 不能對字串起作用

list($bar) = "abcde";

var_dump($bar); // null

?>

coffee is brown and caffeine makes it special.

coffee has caffeine.

i need caffeine!

null

栗子二:

<?php

list($a, list($b, $c)) = array(1, array(2, 3));

var_dump($a, $b, $c);

?>

int(1)

int(2)

int(3)

栗子三:

<?php

$info = array('coffee', 'brown', 'caffeine');

list($a[0], $a[1], $a[2]) = $info;

var_dump($a);

?>

array(3)
比較冷門,可以嘗試著使用一下。

PHP中list 的用法

大家平時在賦值陣列的值給變數時是不是這麼寫的呢 示例1 arr array test1 a test2 b test3 c test4 d test5 e test1 arr test1 test2 arr test2 test3 arr test3 test4 arr test4 test5 ar...

list中的Sort Exists方法使用

exists方法 static void main string args 主函式即入口函式,不知道什麼意思的面壁吧!if list1.exists matchpre 呼叫方法,謂詞匹配函式的呼叫,這是呼叫您自定義的函 數matchpre console.writeline ok 若list1中存在...

Java中List的remove方法

今天被問到乙個問題 numberlist是乙個儲存數字的容器,以下 執行後容器中的數字是什麼?listnumberlist new arraylist 5 numberlist.add 2 numberlist.add 4 numberlist.add 1 numberlist.add 3 numb...