PHP一个小函数

//
    
    function makeTemp($fileName="index",$ftype=0)
    {
        $tempPath="xx/xxxx/{$fileName}.html";
        if(file_exists($tempPath))
        {
            return $tempPath;
        }else{
            return false;
        }
    }
//然后 if(↓)
require_once(makeTemp('test'));

//xx/xxxx/test.html
原文地址:https://www.cnblogs.com/love-zf/p/4380321.html