PHP:是否可以从 php 类/对象内部结束像 exit() 这样的脚本

发布于 2024-10-11 12:37:29 字数 268 浏览 4 评论 0原文

可以这样做吗?

$objetc -> runAndFinish();

echo "this should not be echoed";

而不是这个?

$objetc -> runAndFinish();

exit();

echo "this should not be echoed";

所以 runAndFinish();方法会以某种方式结束脚本处理。 是否可以?

Is it possible to do this?

$objetc -> runAndFinish();

echo "this should not be echoed";

instead of this?

$objetc -> runAndFinish();

exit();

echo "this should not be echoed";

So runAndFinish(); method would somehow end the script processing.
Is it possible?

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

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

发布评论

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

评论(4

青芜 2024-10-18 12:37:29

放置一个 exit();在你的类中 runAndFinish();方法

class someClass{
  function runAndFinish(){
     exit();
  }
}

$obj = new someClass();
$obj->runAndFinish();
echo "not gonna print";

Put an exit(); inside of your classes runAndFinish(); method

class someClass{
  function runAndFinish(){
     exit();
  }
}

$obj = new someClass();
$obj->runAndFinish();
echo "not gonna print";
孤千羽 2024-10-18 12:37:29

将退出调用放在方法中,它将在调用过程中退出

Put the exit call in the method and it will exit during its call

卖梦商人 2024-10-18 12:37:29

如果您在课堂上,您可以使用:

if($condition)
{
return;
}

If you are in a class you can use:

if($condition)
{
return;
}
苍白女子 2024-10-18 12:37:29

是的,当然有可能。如果您将 exit()die() (或其他可能结束执行的内容)放入该特定方法中,它将执行。

据我所知,与其他任何方法相比,您可以在方法中执行的内容没有任何特殊限制。

Yes, of course it's possible. It you put exit() or die() (or something else that might end execution) in that particular method and it will execute.

To my knowledge, there aren't any special restrictions for what you can execute in a methods vs. anything else.

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