回答
使用PHP fwrite()將內容創建爲空的PHP文件。內容定義了用戶輸入的常量。使用這些常量將值設置爲數據庫配置文件。
爲接受配置數據創建一個表單,在這個過程中這些內容寫入一個文件或一個xml。然後從文件配置數據中讀取
我推薦使用.ini文件。例如:
database.config.ini:
host = "localhost"
db = "test"
user = "root"
pass = ""
要加載的配置:
$config = parse_ini_file('database.config.ini');
print_r($config);
/*Array
(
[host] => "localhost"
[db] => "test"
[user] => "root"
[pass] => ""
)*/
是否可讀如果我:http://something/database.config.ini? – 2012-11-06 15:22:53
@Zlatan我不明白你的問題。有關函數的詳細信息,請閱讀php文檔:http://php.net/manual/en/function.parse-ini-file.php –
如果我從瀏覽器中訪問.ini文件,它是否可讀? – 2012-11-06 16:34:33
- 1. 安裝MySQL並配置爲php
- 2. MySQL安裝/配置錯誤
- 3. PHP Mysql安裝
- 4. 從配置文件安裝MySql
- 5. MySQL安裝配置無法繼續
- 6. JDBC和MySql的安裝和配置
- 7. MySQL 5.6在Windows上安裝和配置
- 8. MySQL服務器 - 安裝和配置Slillyly
- 9. MySQL服務器安裝失敗配置
- 10. 安全的PHP數據庫配置
- 11. PHP安裝中的配置文件
- 12. 安裝SOAP擴展PHP配置(AWS)
- 13. Office安裝配置
- 14. TclOO安裝配置
- 15. 爲數據庫安裝PHP
- 16. 安裝MySql使用默認配置自動配置
- 17. runhaskell設置配置[安裝]
- 18. CMake安裝:安裝配置文件
- 19. 在Ubuntu中從源代碼安裝Apache&PHP後配置MySQL for PHP
- 20. 安裝MySQL安裝
- 21. magento安裝配置插件
- 22. 安裝bluecloth - 配置選項?
- 23. Scala Netbeans 8.1安裝配置
- 24. Windsor安裝程序配置
- 25. Restler 3 - 安裝配置
- 26. 配置錯誤安裝fftw
- 27. 安裝使用Java配置
- 28. TWiki安裝/配置問題
- 29. 安裝starspan配置錯誤
- 30. 安裝或配置Interop.Microsoft.Office.Interop.Word.dll
是否有可能寫入到PHP文件呢?對於存儲這種數據來說,XML聽起來並不安全。 – user1121487
這就是我不確定,請嘗試 – Elby