php rename错误原因的查找方法:1、新增一些安全检查;2、开启错误报告“error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);”。
本文操作环境:windows7系统、PHP7.1版,DELL G3电脑
PHP:rename()如何找到错误原因?
我想打印出错误的原因。
error_get_last()似乎没有返回任何内容。rename()返回true false,而不是异常。
if (!rename($file->filepath, $full_path)) { $error = error_get_last(); watchdog('name', "Failed to move the uploaded file from %source to %dest", array('%source' => $file->filepath, '%dest' => $full_path)); }
解决办法
首先,最好在以下情况之前新增一些安全检查:
if (file_exists($old_name) && ((!file_exists($new_name)) || is_writable($new_name))) { rename($old_name, $new_name); }
其次,可以开启错误报告:
error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);
推荐学习:《PHP视频教程》
以上就是php rename错误原因怎么找的详细内容,更多请关注php中文网其它相关文章!
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/148046.html