thinkphp5.0如何获取public目录
时间: 2023-08-22 15:03:49 浏览: 215
thinkphp等入口文件在public目录的设置方法
在ThinkPHP 5.0中,可以通过以下方式获取public目录的路径:
```php
$publicPath = public_path();
```
此方法会返回public目录的绝对路径。你可以在需要使用public目录的地方调用该方法获取路径。
请注意,此方法是在ThinkPHP 5.0中使用的,对于其他版本的ThinkPHP可能会有不同的方法。
阅读全文