我读取数据库以获取$doc_copy
(包含链接)。如果有链接,那么复制过程开始然后转到mainProcess.php
,但如果找不到链接,则转到'summary_index.php';`
这是代码:
function copyDoc($link, $savePath){
@copy($link, $savePath . basename($link));
}
while ($row = mysql_fetch_array($q)){
$doc_copy = $row['doc_url'];
$copy = copyDoc($doc_copy, $savePath);
if ($copy=== false){
include 'summary_index.php';
}
else include 'mainProcess.php';
}
如果没有复制过程就可以了。但是当没有复制过程summary_index.php
没有运行时。什么'错了?非常感谢你:))
答案 0 :(得分:0)
您的函数没有返回语句,因此$copy
始终为false
应该是这样的
function copyDoc($link, $savePath){
return copy($link, $savePath . basename($link));
}