Codeigniter 3 - Access Session from Outside Codeigniter Installation

后端 未结 3 1358
半阙折子戏
半阙折子戏 2020-12-09 23:22

I can\'t seem to get session data passed from my codeigniter application back to a script in my includes folder. From what I\'ve read on other answers, I need to set my

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-09 23:48

    The original answer from @wolfgang1983 Ben Swinburne combined with an answer here: from Atiqur Rahman Sumon

    You can include the index.php from any directory, however, you need to change the $system_path and $application_folder variables to match your relative location. Well that's great if you want to completely change your whole application's paths, but I didn't want to, so I just copied the index.php file into the directory I needed to include codeigniter with.

    ROOT /
         .. /application
         .. /system
         .. /includes
            .. /Events.php <- I need access from here
            .. /index.php <- Copied CI index with new paths
         .. /index.php
    

    In /includes/index.php:

    //$system_path = 'system';
    $system_path = '../system';
    
    //$application_folder = 'application';
    $application_folder = '../application';
    

    Now you can include codeigniter in your file with the:

    load->library('session'); //if it's not autoloaded in your CI setup
        echo $CI->session->userdata('name');
    ?>
    

    If you refresh your page now, you would end up with the default controller loaded.

    So taking from Atiqur Rahman Sumon's answer, we can define a constant before load to tell the default controller we want to skip it's normal callstack.

    ob_start();
    define("REQUEST", "external"); <--
    include('index.php');
    ob_end_clean();
    

    And in your default_controller.php:

    function index()
    {
        if (REQUEST == "external") {
            return;
        } 
    
        //other code for normal requests.
    }
    

提交回复
热议问题