代码之家  ›  专栏  ›  技术社区  ›  Dean Huang

如何读取codeigniter文件夹外的文件

  •  5
  • Dean Huang  · 技术社区  · 7 年前

    我有一个项目要从codeigniter目录外但在同一服务器上读取文件

    codeigniter文件夹路径:

    购买/仪表板/文件名。txt文件

      $handle = fopen("purchase/dashboard/filename.txt", "r");
      echo $handle;
    
      ?>
    

    我如何在code igniter中做到这一点?我知道如何从codeiginiter(应用程序中的文件夹资源/等)的同一目录中读取文件,但当我尝试时。/或../codeigniter不会读取文件内容

    2 回复  |  直到 7 年前
        1
  •  3
  •   Mr. ED    6 年前

    您可以使用 FCPATH

    application
    purchase
    purchase > dashboard
    system
    index.php
    

    文件

    <?php 
    
    if (file_exists(FCPATH . 'purchase/dashboard/filename.txt') {
    
       $handle = fopen(FCPATH . 'purchase/dashboard/filename.txt', "r");
    
       echo $handle;
    
    }
    
    ?>
    

    <?php 
    
    if (file_exists('/purchase/dashboard/filename.txt') {
    
       $handle = fopen('/purchase/dashboard/filename.txt', "r");
    
       echo $handle;
    
    }
    
    ?>
    

    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
    
        2
  •  1
  •   Naga    7 年前

    <?php 
    
     $handle = fopen("/purchase/dashboard/filename.txt", "r");
     echo $handle;
    
    ?>