PHP chmod() 函数PHP Filesystem 函数定义和用法chmod() 函数改变文件模式。如果成功则返回 TRUE,否则返回 FALSE。语法chmod(file,mode) 参数 描述 file 必
PHP chgrp() 函数PHP Filesystem 函数定义和用法chgrp() 函数改变文件所属的组。如果成功则返回 TRUE,否则返回 FALSE。语法chgrp(file,group) 参数 描述 file
PHP basename() 函数PHP Filesystem 函数定义和用法basename() 函数返回路径中的文件名部分。语法basename(path,suffix) 参数 描述 path 必需。规定要检查
PHP trigger_error() 函数PHP Error 和 Logging 函数实例如果 $usernum 大于 10,触发一个错误:<?php if ($usernum>10) { trigger_error("Number cannot be larger than 1
PHP set_exception_handler() 函数PHP Error 和 Logging 函数实例设置用户定义的异常处理函数:<?php// 用户定义的异常处理函数 function myException($exception) { ech
PHP set_error_handler() 函数PHP Error 和 Logging 函数实例通过 set_error_handler() 函数设置用户自定义的错误处理程序,然后触发错误(通过 trigger_error()):<?php // 用户
PHP restore_exception_handler() 函数PHP Error 和 Logging 函数Example恢复异常处理程序:<?php// 两个用户定义的异常处理函数 function myException1($exception) { e
PHP restore_error_handler() 函数PHP Error 和 Logging 函数Example在通过 set_error_handler() 函数更改错误处理函数之后对其进行恢复:<?php // 用户定义的错误处理函数 f
PHP error_reporting() 函数PHP Error 和 Logging 函数实例规定不同的错误级别报告:<?php // 关闭错误报告 error_reporting(0); // 报告 runtime 错误 error_reporting(E_ER
PHP error_log() 函数PHP Error 和 Logging 函数实例把错误消息发送到 web 服务器日志和邮件账号:<?php// 如果错误连接至数据库,则向服务器日志发送错误消息if (!mysqli_conn
PHP error_get_last() 函数PHP Error 和 Logging 函数Example返回最后发生的错误:<?php echo $test; print_r(error_get_last()); ?> 以上代码的输出类似这样:Array ( [ty
PHP debug_print_backtrace() 函数PHP Error 和 Logging 函数Example打印一条 PHP 回溯:<?php function a($txt) { b("Glenn"); } function b($txt) { c("Cleveland"
PHP debug_backtrace() 函数PHP Error 和 Logging 函数实例生成 PHP backtrace:<?php function a($txt) { b("Glenn"); } function b($txt) { c("Cleveland");} func
PHP scandir() 函数PHP Directory 函数实例列出 images 目录中的文件和目录:<?php$dir = "/images/";// 以升序排序 - 默认$a = scandir($dir);// 以降序排序$b = scandir($d
PHP rewinddir() 函数PHP Directory 函数实例打开一个目录,列出其中的文件,重置目录句柄,再次列出其中的文件,然后关闭:<?php$dir = "/images/";// 打开目录,然后读取其内容if (is