下面的代碼允許我刪除文件有時。我已經檢查了文件和文件夾的權限,它們存在並被授予正確的訪問權限。有時當我按下刪除按鈕時;它會刪除文件,有時只是刷新頁面而沒有任何反應。有什麼我可以做,以解除鏈接正常工作?我在下面的代碼中丟失了什麼?這是在ZEND中。間歇性取消鏈接不起作用
public function delimageAction()
{
$request = $this->getRequest();
if ($request->isPost()) {
// Get the image name
$imageName = $request->getParam('file');
$old = getcwd();
chdir(APPLICATION_PATH . "/../public/images/blog/"); // Change directory to the files
fclose(APPLICATION_PATH . "/../public/images/blog/" . $imageName);
// Delete it
unlink(APPLICATION_PATH . "/../public/images/blog/" . $imageName)
chdir($old); // Return to old directory
}
$this->_helper->redirector('blog', 'index');
}
試試這個:POST參數文件= 「../../私營/ index.php文件」(或類似) –
@Eugen:淘氣! – PatrikAkerstrand