Laravel 获取文件路径
时间: 2023-09-09 12:07:57 浏览: 140
获取文件路径
在 Laravel 中,可以使用 `public_path()` 函数来获取 public 目录的绝对路径,例如:
```php
$filePath = public_path('images/logo.png');
```
如果要获取其他目录下的文件路径,可以使用 `base_path()` 函数来获取项目根目录的绝对路径,例如:
```php
$filePath = base_path('storage/app/file.txt');
```
另外,如果要获取当前正在执行的脚本所在的目录,可以使用 `__DIR__` 魔术常量,例如:
```php
$filePath = __DIR__ . '/config/database.php';
```
阅读全文