标签:print 计算 功能 strlen() 变长参数 存储 程序 学习 add
echo(),print(),die(),isset(),unset(),include(),include_once(),require(),requiee_once(),array(),list(),empty(),eval()
$foo=‘hello‘;$bar=‘world‘;echo $foo.$bar;echo $foo,$bar;
$str=‘hello‘;if(strlen($str)===5) echo ‘do sth...‘;if(!isset($str[5])) echo ‘do sth..‘;
$arr=array();$arr=[];$arr=array(1,2,3,4);$arr=[1,2,3,4];
function addAll(...$num){$sum=array_sum($num);return $sum;}addAll(1,2,3,4,5,6);
标签:print 计算 功能 strlen() 变长参数 存储 程序 学习 add
原文地址:https://www.cnblogs.com/shengChristine/p/10824341.html