php list()函数用法示例

内容摘要
这篇文章主要为大家详细介绍了php list()函数用法示例,具有一定的参考价值,可以用来参考一下。

感兴趣的小伙伴,下面一起跟随php教程的小玲来看看吧!
list()( PHP 4中, PHP 5中)li
文章正文

这篇文章主要为大家详细介绍了php list()函数用法示例,具有一定的参考价值,可以用来参考一下。

感兴趣的小伙伴,下面一起跟随php教程的小玲来看看吧!

list()( PHP 4中, PHP 5中)list-指定变量,好象他们是一个数组描述void list ( mixed $varname [, mixed $... ] )像阵列( ) ,这是不是一个真正的功能,而是一种语言结构。名单( )是用来指定名单中的变数之一作业。参数varname一个变量。返回值没有价值的返回。实例例如# 1名单( )的例子

代码如下:


<?php
/*   php教程 www.512Pic.com   */

$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
?>
另外参考:https://www.idcnote.com/w3school/php/func_array_list.htm

注:关于php list()函数用法示例的内容就先介绍到这里,更多相关文章的可以留意

代码注释

作者:喵哥笔记

IDC笔记

学的不仅是技术,更是梦想!