php|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);
知识点扩展:
语句:rename(oldname,newname,context)
参数 | 描述 |
oldname | 必需,规定要重命名的文件或目录. |
newname | 必需,规定文件或目录的新名称 |
context | 必需,规定文件句柄的环境,context 是可修改流的行为的一套选项 |
注释:用于 oldname 中的封装协议必须和用于 newname 中的相匹配.
注释:对 context 的支持是 php 5.0.0 添加的.
【php|php rename错误原因的查找方法】到此这篇关于php rename错误原因的查找方法的文章就介绍到这了,更多相关php rename错误原因内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- thinkphp|thinkphp 3.2 如何调用第三方类库
- 唱歌教学(导致嗓音损坏的几个常见的错误唱歌方法!)
- CGI,FastCGI,PHP-CGI与PHP-FPM
- 调取接口时报404错误(ID:16)
- 接口|axios接口报错-参数类型错误解决
- 碧珠生活智慧语录24-1(没有错误)
- PHP开发-Mac搭建ThinkPHP5.0
- 追女生的七种错误思维
- c#常用网址记录
- sentry搭建错误监控系统(二)