PHP error_log() 函数
2017-08-05 PHP error_log() 函数 PHP Error 和 Logging 函数 实例 把错误消息发送到 web 服务器日志和邮件账号: ?php // 如果错误连接至数据库,则向服务器日志发送错误消息 if (!mysqli_connect(localhost,bad_use
PHP error_get_last() 函数
2017-08-05 PHP error_get_last() 函数 PHP Error 和 Logging 函数 Example 返回最后发生的错误: ?php echo $test; print_r( error_get_last() ); ? 以上代码的输出类似这样: Array ( [type] = 8 [message] = Undefined variable: test [fi
PHP debug_print_backtrace() 函数
2017-08-05 PHP debug_print_backtrace() 函数 PHP Error 和 Logging 函数 Example 打印一条 PHP 回溯: ?php function a($txt) { b(Glenn); } function b($txt) { c(Cleveland);} function c($txt) { debug_print_backtrace() ; } a(Peter); ? 以上代码的
PHP debug_backtrace() 函数
2017-08-05 PHP debug_backtrace() 函数 PHP Error 和 Logging 函数 实例 生成 PHP backtrace: ?php function a($txt) { b(Glenn); } function b($txt) { c(Cleveland);} function c($txt) { var_dump( debug_backtrace() ); } a(Peter); ? 以上代码的输出
PHP scandir() 函数
2017-08-05 PHP scandir() 函数 PHP Directory 函数 实例 列出 images 目录中的文件和目录: ?php$dir = /images/; // 以升序排序 - 默认 $a = scandir($dir) ; // 以降序排序 $b = scandir($dir,1) ;print_r($a);print_r($b);? 结果:
PHP rewinddir() 函数
2017-08-05 PHP rewinddir() 函数 PHP Directory 函数 实例 打开一个目录,列出其中的文件,重置目录句柄,再次列出其中的文件,然后关闭: ?php$dir = /images/; // 打开目录,然后读取其内容 if (is_dir($dir)
PHP readdir() 函数
2017-08-05 PHP readdir() 函数 PHP Directory 函数 实例 打开一个目录,读取它的内容,然后关闭: ?php$dir = /images/; // 打开目录,然后读取其内容 if (is_dir($dir)){ if ($dh = opendir($dir)){ while (($file = readdir($dh
PHP opendir() 函数
2017-08-05 PHP opendir() 函数 PHP Directory 函数 实例 打开一个目录,读取它的内容,然后关闭: ?php$dir = /images/; // 打开目录,然后读取其内容 if (is_dir($dir)){ if ($dh = opendir($dir) ){ while (($file = readdir($d
PHP getcwd() 函数
2017-08-05 PHP getcwd() 函数 PHP Directory 函数 实例 获取当前工作目录: ?phpecho getcwd() ? 结果: /home/php 定义和用法 getchwd() 函数返回当前工作目录。 语法 getcwd(); 技术细节 返回值: 若成功则返回当前
PHP dir() 函数
2017-08-05 PHP dir() 函数 PHP Directory 函数 实例 使用 dir() 函数: ?php$d = dir(getcwd()) ;echo Handle: . $d-handle . br;echo Path: . $d-path . br;while (($file = $d-read()) !== false){ echo filename: . $file . br;}$d-close();? 结果: H