In PHP, why are my session variables persisted as references?

后端 未结 4 1740
醉话见心
醉话见心 2021-01-22 09:37

Here\'s the code. It\'s a simple operation to check that a session ID isn\'t being spoofed by verifying the IP address:

session_start();
$session_ip_address = $_         


        
4条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-22 09:57

    If I have:

    I get:

    array(1) {
      ["blah"]=>
      string(4) "blah"
    }
    

    No references in sight. PHP 5.3.2 on Ubuntu 10.04.1

提交回复
热议问题