Return to frontcontroller16.phar CVS log | Up to [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / phar / tests / files |
1.1 misho 1: <?php 2: try { 3: Phar::webPhar("test.phar", "/index.php", null, array(), array("fail", "here")); 4: } catch (Exception $e) { 5: die($e->getMessage() . "\n"); 6: } 7: echo "oops did not run\n"; 8: var_dump($_ENV, $_SERVER); 9: __HALT_COMPILER(); ?> 10: 7 &