php函数的返回值和输出有什么不同?
如这个例子,如果把return换成echo,结果有什么不同?什么时候用return,什么时候用echo呢?<html><body><?phpfunctionadd($x,...
如这个例子,如果把return 换成echo,结果有什么不同?什么时候用return ,什么时候用echo呢?
<html><body><?phpfunction add($x,$y) { $total = $x + $y; return $total; }echo "1 + 16 = " . add(1,16);?></body></html>
以上代码的输出:
1 + 16 = 17 展开
<html><body><?phpfunction add($x,$y) { $total = $x + $y; return $total; }echo "1 + 16 = " . add(1,16);?></body></html>
以上代码的输出:
1 + 16 = 17 展开
3个回答
2013-08-17
展开全部
echo 是输出
return 是返回值
比如下面代码
function test(){
echo "test";
}
test();//将输出test
function test(){
return "test";
}
test();//没有输出
echo test();//输出test
$test = test();//将函数的返回值赋值给$test变量
echo $test;//
return 是返回值
比如下面代码
function test(){
echo "test";
}
test();//将输出test
function test(){
return "test";
}
test();//没有输出
echo test();//输出test
$test = test();//将函数的返回值赋值给$test变量
echo $test;//
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询