PHP 函数的返回值

发布于 2024-11-19 13:51:13 字数 280 浏览 0 评论 0原文

下面的代码有什么问题?希望你明白我想做什么。我对函数不是很熟悉。

function test ($variable) {
   $one = 3;
   if ($variable == 10) {
       $one = "2";
   }
   return $one;
}

foreach ($array as $arraypart) { 
   $part = explode(',',$arraypart);
   test($part[0]);
   echo $one;
}

what is wrong with the following code? Hope you understand what I'm trying to do. I'm not very familiar with functions.

function test ($variable) {
   $one = 3;
   if ($variable == 10) {
       $one = "2";
   }
   return $one;
}

foreach ($array as $arraypart) { 
   $part = explode(',',$arraypart);
   test($part[0]);
   echo $one;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

著墨染雨君画夕 2024-11-26 13:51:13

您需要将函数的结果分配给变量:

$one = test($part[0]);

You need to assign the result of function to a variable:

$one = test($part[0]);
一曲爱恨情仇 2024-11-26 13:51:13

这里发生了什么,你的函数被调用,但没有变量来捕获 test() 返回的内容......

你需要捕获 temp func 返回的值,如下所示

$val = temp($part[0]);
或者
你可以直接写 echo temp($part[0]);

here what happens, your function is being called but no variable is there to catch what test() is returning....

you need catch value which is returned by temp func like this

$val = temp($part[0]);
or
you can write direct echo temp($part[0]);

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文