php中标记@怎么个用法? $time=time()-@filemtime("$webdb[IndexHtmlName]")-$webdb[MakeIndexHtmlTime]*6
php中标记@怎么个用法? $time=time()-@filemtime("$webdb[IndexHtmlName]")-$webdb[MakeIndexHtmlTime]*6
日期:2021-07-19 00:57:19 人气:1
PHP中使用 @ 符号来屏蔽可能出现的错误提示。
比如连接数据库时:
$conn = @mysql_connect("localhost","root","password");
如果不屏蔽错误,可能会将数据库的相关敏感信息暴露出来……
比如连接数据库时:
$conn = @mysql_connect("localhost","root","password");
如果不屏蔽错误,可能会将数据库的相关敏感信息暴露出来……