2021
11-07
11-07
php rename错误原因的查找方法
打印出错误的原因。error_get_last()似乎没有返回任何内容。rename()返回truefalse,而不是异常。if(!rename($file->filepath,$full_path)){$error=error_get_last();watchdog('name',"Failedtomovetheuploadedfilefrom%sourceto%dest",array('%source'=>$file->filepath,'%dest'=>$full_path));}解决办法首先,最好在以下情况之前新增一些安全检查:if(file_exists($old_name)&&((!file_ex...
继续阅读 >