深入php list 函式的詳解

2022-10-06 13:12:11 字數 937 閱讀 7836

list()

( php 4中, php 5中)

list-指定變數,好象他們是乙個陣列

描述void list ( mixed $varname [, mixed $... ] )

像陣列( ) ,這是不是乙個真正的功能,而是一種語言結構。名單( )是用來指定名單中的變數之一作業。

引數varname

乙個變數。

返回值沒有價值的返回。

例項例如# 1名單( )的例子

複製** **如下:

<?php

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

// listing all the variables

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

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

// l程式設計客棧isting some of them

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

echo "$drink has $power.n";

// or let's skipqtldtvcy to only the thiqtldtvcyrd one

list( , , $power) = $info;

echo "i needqtldtvcy $power!n";

// list() doesn't work with strings

list($bar) = "abcde";

var_dump($bar); // null

?>

另外參考:程式設計客棧net/w3school/php/func_array_list.htm

本文標題: 深入php list()函式的詳解

本文位址:

深入php var dump 函式的詳解

php var dump函式作用是判斷乙個變數的型別與長度,並輸出變數的數值,如果變數有值輸的是變數的值並回返資料型別.來看看var dump 語法 複製 如下 var dump var,var,bar 下面來看看我剛才的乙個例項吧.複製 如下 ta 1 tb 程式設計客棧t echo var du...

VC 深入詳解 函式的過載 轉

我們希望在構造pt這個物件的同時,傳遞x座標和y座標的值。可以再定義乙個建構函式,如例2 8所示。例2 8 include class point point int a,int b void output cout 過載構成的條件 函式的引數型別 引數個數不同,才能構成函式的過載。分析以下兩種情況...

PHP危險函式禁用深入詳解

error log 功能描述 將錯誤資訊傳送到指定位置 檔案 安全備註 在某些版本的 php 中,可使用 error log 繞過 php safe mode,執行任意命令。危險等級 低 phpinfo 功能描述 輸出 php 環境資訊以及相關的模組 web 環境等資訊。危險等級 中 scandir...