How do I get the project basepath in CodeIgniter

前端 未结 6 730
失恋的感觉
失恋的感觉 2020-12-15 03:22

I have created a folder as user in the root directory.

My project base path is:

/var/www/myproject/

When I want to access the base

6条回答
  •  难免孤独
    2020-12-15 03:42

    Following are the build-in constants you can use as per your requirements for getting the paths in Codeigniter:

    EXT: The PHP file extension
    
    FCPATH: Path to the front controller (this file) (root of CI)
    
    SELF: The name of THIS file (index.php)
    
    BASEPATH: Path to the system folder
    
    APPPATH: The path to the “application” folder
    

    Thanks.

提交回复
热议问题