正常的copy("thisflie.php","here.php")or die("error message");
我可以用吗if(copy()) { redirect page}
如果copy()
我如何重定向页面有错误。
正常的copy("thisflie.php","here.php")or die("error message");
我可以用吗if(copy()) { redirect page}
如果copy()
我如何重定向页面有错误。
如果您检查文档,您可以看到copy()
returnTRUE
或者FALSE
您可以简单地执行以下操作:
if(copy($source, $dest) === false){
// error here
}
老实说,第一个停靠点应该是文档。作为旁注,or die()
永远不应该是“正常的”,你应该处理你的错误,而不仅仅是在执行过程中终止脚本。
就用这个
if(copy() === false){
// error here
}