コード例 #1
0
ファイル: routes.php プロジェクト: albertpaulp/PrettyBoot
/**
 * Determine if a documentation page exists.
 *
 * @param  string  $page
 * @return bool
 */
function document_exists($page)
{
    return file_exists(doc_root() . $page . '.md');
}
コード例 #2
0
ファイル: functions.php プロジェクト: sdgdsffdsfff/json-db
function dbs_path()
{
    $root_path = doc_root() . '/databases/' . db_domain();
    if (!file_exists($root_path)) {
        mkdir($root_path);
        init_db_root($root_path);
    }
    return $root_path;
}