当前位置 : 主页 > 网络编程 > PHP >

php rename错误原因怎么找

来源:互联网 收集:自由互联 发布时间:2021-08-10
php rename错误原因的查找方法:1、新增一些安全检查;2、开启错误报告“error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);”。 本文操作环境:windows7系统、PHP7.1版,DELL G3电脑 PHP:rename()如何

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);

网友评论