codeigniter有些不对劲,是真的吗?

时间:2018-05-10 03:18:07

标签: php codeigniter

在windows,php5.5和ci 3.1.8中测试 我创建了一个像这样的test.php:

ffmpeg -i "data/raw_data/000000005.avi" -vf fps=X -f segment -segment_time 0.0333333333333333 -force_key_frames "expr:gte(t,n_forced*0.0333333333333333)" -reset_timestamps 1 -segment_time_delta 1.0 -c:a copy "test_break_up/audios/%d.wav"

运行它,返回结果: 数组([isadmin] => admin [user] => user1)

选择会话文件,并在ci中创建一个Welcome.php,如下所示:

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

并在http://localhost/index.php/welcome/test中运行 返回结果:

数组([admin] =&gt; 1)

操作的结果不一样。有些不对劲吗?

1 个答案:

答案 0 :(得分:0)

提取:将数组中的变量导入当前符号表。

只是当前符号表

请参阅http://php.net/manual/en/function.extract.php