Rev 615 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php#設置要讀取的檔案$file="README";#確認 READEME 是否存在$exist=file_exists("README");#如果 README 檔案不存在if($exist!==true){#導頁到 qbpwcf 套件分享頁面header("location: https://sourceforge.net/projects/qbpwc/");#結束執行exit;}#if end#印出 README 檔案的內容echo "<pre>";echo file_get_contents($file);echo "</pre>";?>