添加内容,如果下面没有错误数组

发布于 2024-12-11 14:36:26 字数 442 浏览 0 评论 0原文

这是我的代码:

$msg = "Hello User {$uid}";
echo $msg;
$action = $_GET['do'];

if( file_exists("page/actions/{$action}.php") && !empty($action))
    include_once("page/actions/{$action}.php");
else
    include_once("page/actions/default.php");

现在我需要将其更改为:

如果包含页面:

include_once("page/actions/{$action}.php");

返回“错误”数组,则 $msg 变量将不会显示。

这可能吗?

This is my code:

$msg = "Hello User {$uid}";
echo $msg;
$action = $_GET['do'];

if( file_exists("page/actions/{$action}.php") && !empty($action))
    include_once("page/actions/{$action}.php");
else
    include_once("page/actions/default.php");

Now I need to change it into:

if included page :

include_once("page/actions/{$action}.php");

returned an 'error' array then $msg variable won't be displayed.

Is that possible?

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

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

发布评论

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

评论(1

离去的眼神 2024-12-18 14:36:26

我不太明白,但如果您在包含的文件中设置了错误数组,您可以使用 isset($errorArray) 检查。如果未设置,则回显该消息。

I don't really understand but if you set an error array in your included file you can check with isset($errorArray). And echo the message if not set.

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