gpt4 book ai didi

返回字符串的PHP函数

转载 作者:可可西里 更新时间:2023-10-31 23:04:37 25 4
gpt4 key购买 nike

我是 PHP 的新手。我有一个检查价格成本的功能。我想从此函数返回变量以供全局使用:

<?
function getDeliveryPrice($qew){
if ($qew=="1"){
$deliveryPrice="60";
} else {
$deliveryPrice="20";
}
return $deliveryPrice;
}
// Assuming these two next lines are on external pages..
getDeliveryPrice(12);
echo $deliveryPrice; // It should return 20

?>

最佳答案

您应该简单地将返回值存储在一个变量中:

$deliveryPrice = getDeliveryPrice(12);
echo $deliveryPrice; // will print 20

上面的 $deliveryPrice 变量与函数内部的 $deliveryPrice 变量不同。由于 variable scope,后者在函数外不可见.

关于返回字符串的PHP函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12296624/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com