我有一個簡單的問題,但不知何故我無法解決它。我想創建一個pdf文件,因此我嘗試了Zend提供的示例(here)。當我運行代碼時,出現以下錯誤:「PDF錯誤:無法打開'example.pdf'文件進行寫入」。 我認爲問題是權限。但我不知道哪個文件應該獲得寫入權限。而不是僅僅提供每個文件的權限,我想詢問是否有人知道我需要做什麼。Zend PDF - 權限問題
1
A
回答
1
將保存文件的路徑更改爲類似這樣的內容,並使目錄可寫。
如果您希望能夠覆蓋該文件使用以下命令:
$pdf->save('path/to/example.pdf', TRUE);
0
你應該添加這樣的事情能夠乾淨利落處理缺少寫入權限
$path = 'path/to/example.pdf';
$folder = dirname($fileToWrite);
if (!is_dir($folder) ||
!is_writeable($folder) ||
(file_exists($path) && !is_writeable($path)) {
throw new Exception('The server admin does not allow you to write the file. ask him to give you the required permissions to write "'. $path . '"');
}
的情況下,
相關問題
- 1. Zend PDF問題
- 2. 權限問題
- 3. Zend框架PDF多問題
- 4. CKFinder上傳權限問題
- 5. Linux權限問題
- 6. SqlTableDependency權限問題
- 7. Apache2權限問題
- 8. Samba權限問題
- 9. Firebase權限問題
- 10. Webdeploy權限問題
- 11. 問題executeScript權限
- 12. Coordino權限問題?
- 13. Corflag權限問題
- 14. 「android.permission.MOUNT_UNMOUNT_FILESYSTEMS」權限問題
- 15. SSRS - 權限問題
- 16. IIS權限問題
- 17. WebSVN權限問題
- 18. Sitecore權限問題
- 19. Android權限問題
- 20. githook權限問題
- 21. RMI權限問題
- 22. CocoaPods權限問題
- 23. Linux權限問題
- 24. Process.Start權限問題
- 25. SharePoint權限問題
- 26. OneNote權限問題
- 27. SSIS權限問題
- 28. 關於Android權限的問題權限
- 29. Zend PDF DrawLine打印輸出問題
- 30. Drupal菜單權限問題