gpt4 book ai didi

php - include 或 require 之前的 @ 是什么意思

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:58:38 24 4
gpt4 key购买 nike

我想知道当我们在 php 中的 include 或 require 之前使用 @ 是什么意思?!

比如:

@include('block.php');

这可能是一个菜鸟问题,但我需要知道它,伙计们?!

很抱歉

最佳答案

@ 是闭嘴运算符。如果出现问题,将不会显示任何错误消息。使用它通常是一种不好的做法;首先是因为错误消息的发生是有充分理由的,其次是因为它的工作速度慢得离谱。

它大致相当于将语句包装在:

$oldErrorLevel = error_reporting(0);
// the statement
error_reporting($oldErrorLevel);

Here's the link to the PHP manual page documenting it.

关于php - include 或 require 之前的 @ 是什么意思,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2717169/

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