1. 程式人生 > >在laravel框架中獲取路徑的函式

在laravel框架中獲取路徑的函式

app_path()

app_path函式返回app目錄的絕對路徑:
$path = app_path();

你還可以使用app_path函式為相對於app目錄的給定檔案生成絕對路徑:
$path = app_path('Http/Controllers/Controller.php');

base_path()

base_path函式返回專案根目錄的絕對路徑:
$path = base_path();

你還可以使用base_path函式為相對於應用目錄的給定檔案生成絕對路徑:
$path = base_path('vendor/bin');

config_path()

config_path函式返回應用配置目錄的絕對路徑:
$path = config_path();

database_path()

database_path函式返回應用資料庫目錄的絕對路徑:
$path = database_path();

public_path()

public_path函式返回public目錄的絕對路徑:
$path = public_path();

storage_path()

storage_path函式返回storage目錄的絕對路徑:
$path = storage_path();

還可以使用storage_path函式生成相對於storage目錄的給定檔案的絕對路徑:
$path = storage_path('app/file.txt');