From:             m dot kurzyna at crystalpoint dot pl
Operating system: Linux
PHP version:      5.3.0
PHP Bug Type:     Filter related
Bug description:  INPUT_SERVER returns NULL for set variables (CLI)

Description:
------------
This is very similar to #44779, however my report regards variables set as
environment variables when running CLI.

A variable is visible in $_SERVER but INPUT_SERVER returns NULL. Setting
via SetEnv in apache and when running as mod_php is fine.

Reproduce code:
---------------
<?php

var_dump(
        filter_input(INPUT_SERVER,'ENV_NAME',FILTER_SANITIZE_STRING),
        $_SERVER['ENV_NAME']
);

?>



Expected result:
----------------
$ ENV_NAME=var php /tmp/t.php
string(3) "var"
string(3) "var"


Actual result:
--------------
$ ENV_NAME=var php /tmp/t.php
NULL
string(3) "var"

-- 
Edit bug report at http://bugs.php.net/?id=49184&edit=1
-- 
Try a snapshot (PHP 5.2):            
http://bugs.php.net/fix.php?id=49184&r=trysnapshot52
Try a snapshot (PHP 5.3):            
http://bugs.php.net/fix.php?id=49184&r=trysnapshot53
Try a snapshot (PHP 6.0):            
http://bugs.php.net/fix.php?id=49184&r=trysnapshot60
Fixed in SVN:                        
http://bugs.php.net/fix.php?id=49184&r=fixed
Fixed in SVN and need be documented: 
http://bugs.php.net/fix.php?id=49184&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=49184&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=49184&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=49184&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=49184&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=49184&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=49184&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=49184&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=49184&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=49184&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=49184&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=49184&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=49184&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=49184&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=49184&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=49184&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=49184&r=mysqlcfg

Reply via email to