在PHP中如何得到数组的长度how-to-get-array-length-on-php

--begin by itlife365
PHP中如何得到数组的长度
php开发语言的便利性就是函数多,获取数组的长度
PHP中有两个内建的函数:count() 和sizeof(),可以实现得到数组的长度

$myFruitColorList = array("apple"=>"red", "grass"=>"green", "sky"=>"blue", "night"=>"black", "wall"=>"white");
 echo "Array size with sizeof".sizeof($myFruitColorList);
 echo "Array size with count: ".count($myFruitColorList);

输出的结果:
Array size with sizeof 5
Array size with count: 5
--edn by itlife365
how-to-get-array-length-on-php

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年11月    »
123
45678910
11121314151617
18192021222324
252627282930
搜索
标签列表
网站分类
最新留言
    文章归档
    友情链接

    Powered By Z-BlogPHP 1.7.3

    Copyright Your WebSite.Some Rights Reserved.闽ICP备11018667号-2