來,看程式...
--
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//一開始總是必要的 | |
require '/home/www/config.php'; | |
//或是這樣 | |
require '../config.php'; //但這樣子在crontab不能跑 | |
//當然,接下來的路徑就使用變數或常數來寫程式 | |
require SOPILI_PATH.'/lib/db_connection.php'; |
但... 敗在第一行啊! 完全一點
--
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require '../../config.php'; //原本是這樣 | |
require dirname(__FILE__)."/../../config.php"; //改成這樣 |