Phar::mungServer
Phar::mungServer
(Unknown)
Phar::mungServer — Defines a list of up to 4 $_SERVER variables that should be modified for execution
Description
final public static void Phar::mungServer ( array $munglist )
Phar::mungServer()
should only be called within the stub of a phar archive.
Defines a list of up to 4 $_
SERVER variables that should be modified for execution. Variables that can be modified to remove traces of phar execution are REQUEST
_
URI
, PHP
_
SELF
, SCRIPT
_
NAME
and SCRIPT
_
FILENAME
.
On its own, this method does nothing. Only when combined with Phar::webPhar() does it take effect, and only when the requested file is a PHP file to be parsed. Note that the PATH
_
INFO
and PATH
_
TRANSLATED
variables are always modified.
The original values of variables that are modified are stored in the SERVER array with _
PHAR
_
prepended, so for instance _SCRIPT
_
NAME
would be saved as PHAR
_
SCRIPT
_
NAME
.
Parameters
munglist
an array containing as string indices any of REQUEST
_
URI
, PHP
_
SELF
, SCRIPT
_
NAME
and SCRIPT
_
FILENAME
. Other values trigger an exception, and Phar::mungServer()
is case-sensitive.
Return Values
No return.
Errors/Exceptions
Throws UnexpectedValueException if any problems are found with the passed in data.
Examples
Example #1 A Phar::mungServer() example
<?php
// example stub
Phar::mungServer(array('REQUEST_URI')
Phar::webPhar(
__HALT_COMPILER(
?>
See Also
- Phar::webPhar() - mapPhar for web-based phars. front controller for web applications
- Phar::setStub() - Used to set the PHP loader or bootstrap stub of a Phar archive
← Phar::mount
Phar::offsetExists →
© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.