标签: php codeigniter
我正在使用codeigniter并遇到问题: CodeIgniter的base_url()函数解析站点名称根文件夹,例如http://localhost/sitename。我在应用程序文件夹外安装了第三方库。该库需要文件的绝对路径,例如C:\xampp\sitename\file.ext。我想要这个解析到服务器路径,例如base_url().file.ext(http://localhost/sitename/file.ext)。我怎样才能做到这一点。谢谢。
base_url()
http://localhost/sitename
C:\xampp\sitename\file.ext
base_url().file.ext
http://localhost/sitename/file.ext