что-то не так в codeigniter, это Туре - PullRequest
0 голосов
/ 10 мая 2018

тестирование в windows, php5.5 и ci 3.1.8 Я создаю test.php, как это:

<?php
    session_start();
    $_SESSION['admin']="1";
    $str =array("_SESSION"=>array("isadmin"=>"admin","user"=>"user1"));
    extract($str);
    print_r($_SESSION);

запустить его, результат возврата: Array ([isadmin] => admin [user] => user1)

отмените файл сеанса и создайте Welcome.php в ci, например:

<?php
defined('BASEPATH') OR exit('No direct script access allowed');

class Welcome extends CI_Controller {

/**
 * Index Page for this controller.
 *
 * Maps to the following URL
 *         http://example.com/index.php/welcome
 *    - or -
 *         http://example.com/index.php/welcome/index
 *    - or -
 * Since this controller is set as the default controller in
 * config/routes.php, it's displayed at http://example.com/
 *
 * So any other public methods not prefixed with an underscore will
 * map to /index.php/welcome/<method_name>
 * @see https://codeigniter.com/user_guide/general/urls.html
 */
public function index()
{
    $this->load->view('welcome_message');
}
public function test()
{
    session_start();
    $_SESSION['admin']="1";
    $str =array("_SESSION"=>array("isadmin"=>"admin","user"=>"user1"));
    extract($str);
    print_r($_SESSION);
}

}

и запустите его в http://localhost/index.php/welcome/test Возвращаемый результат:

Array ([admin] => 1)

Результат операции не совпадает. что-то не так?

1 Ответ

0 голосов
/ 10 мая 2018

extract: импортировать переменные из массива в таблицу символов current .

просто текущий таблица символов

см. http://php.net/manual/en/function.extract.php

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...