Subversion Repositories qbpwcf-lib(archive)

Rev

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>";

?>