From:             vojtech at x dot cz
Operating system: Linux
PHP version:      5.2.0
PHP Bug Type:     Filter related
Bug description:  No variables in INPUT_SERVER input type

Description:
------------
Filter related functions don't detect any variables when I use
INPUT_SERVER input type although they are set in $_SERVER  array.

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

$var = 'SERVER_NAME';
var_dump(filter_input(INPUT_SERVER, $var));
var_dump($_SERVER[$var]);
var_dump(array_key_exists($var, $_SERVER) == filter_has_var(INPUT_SERVER,
$var));


Expected result:
----------------
string(9) "localhost" 
string(9) "localhost" 
bool(true)


Actual result:
--------------
NULL 
string(9) "localhost" 
bool(false)


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

Reply via email to