| <?php |
| namespace NotGlobalNamespace; |
| |
| ini_set('date.timezone', 'UTC'); |
| |
| function inject_code($code) { |
| $fileName = tempnam(sys_get_temp_dir(), 'testCase'); |
| file_put_contents($fileName, $code); |
| require $fileName; |
| unlink($fileName); |
| } |
| |
| $file1 = <<<'EOF1' |
| <?php namespace F\o\o; |
| |
| function bar($marker) { |
| echo "$marker => " . date('c') . "\n"; |
| } |
| |
| EOF1; |
| inject_code($file1); |
| |
| echo "These first 6 lines should show the current date stamp:\n"; |
| \F\o\o\bar(1); |
| echo "2 => " . date('c') . "\n"; |
| |
| |
| |
| |
| $file2 = <<<'EOF2' |
| <?php |
| |
| function bar($m) { |
| return \F\o\o\bar($m); |
| } |
| |
| EOF2; |
| inject_code($file2); |
| |
| |
| \F\o\o\bar(4); |
| |
| bar(5); |
| |
| |
| $file3 = <<<'EOF3' |
| <?php namespace F\o\o; |
| |
| function date($f) { |
| return "*** INTERCEPTED ***"; |
| } |
| |
| EOF3; |
| inject_code($file3); |
| |
| |
| echo "6 => " . date('c') . "\n"; |
| |
| |
| echo "All these remaining lines *SHOULD* show 'intercepted':\n"; |
| |
| |
| echo "7 => " . \F\o\o\date('c') . "\n"; |
| |
| |
| \F\o\o\bar(8); |
| |
| bar(9); |
| |
| |
| $file3 = <<<'EOF3' |
| <?php namespace F\o\o; |
| |
| function baz($marker) { |
| echo "$marker => " . date('c') . "\n"; |
| } |
| |
| EOF3; |
| inject_code($file3); |
| |
| \F\o\o\baz(10); |
| |
| |
| $file4 = <<<'EOF4' |
| <?php |
| |
| function baz($m) { |
| return \F\o\o\baz($m); |
| } |
| |
| EOF4; |
| inject_code($file4); |
| |
| baz(11); |
| bar(12); |
| |
| |
| $file5 = <<<'EOF5' |
| <?php |
| |
| bar(13); |
| |
| EOF5; |
| inject_code($file5); |
| |
| echo "WHY is this broken??? (at least for me with PHP 5.6.30)\n"; |