PHP userland backwards compatibility layer that emulates PHP 5.5+ core functions.

⌈⌋ ⎇ branch:  upgrade.php


Artifact [ce474f2ef3]

Artifact ce474f2ef37230244840b78b249db007182bb652:

  • File doc/tests2filter/002.phpt — part of check-in [51e3884900] at 2010-06-22 17:03:27 on branch trunk — upgradephp-15 (user: mario size: 152)

--TEST--
GET test with 2 values and an empty one
--GET--
a=1&b=&c=3
--FILE--
<?php echo $_GET['a'];
echo $_GET['b']; 
echo $_GET['c'];
?>
--EXPECT--
13