欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

深入php list()函数的详解

程序员文章站 2023-02-23 21:55:26
list()( php 4中, php 5中) list-指定变量,好象他们是一个数组描述void list ( mixed $varname [, mixed $......

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";
// listing some of them
list($drink, , $power) = $info;
echo "$drink has $power.n";
// or let's skip to only the third one
list( , , $power) = $info;
echo "i need $power!n";
// list() doesn't work with strings
list($bar) = "abcde";
var_dump($bar); // null
?>

另外参考: