|
Phar::interceptFileFuncsInstructs phar to intercept fopen, file_get_contents, opendir, and all of the stat-related functions Description
final public static void Phar::interceptFileFuncs()
instructs phar to intercept fopen, readfile, file_get_contents, opendir, and all of the stat-related functions. If any of these functions is called from within a phar archive with a relative path, the call is modified to access a file within the phar archive. Absolute paths are assumed to be attempts to load external files from the filesystem. This function makes it possible to run PHP applications designed to run off of a hard disk as a phar application. ParametersNo parameters. Return Values
Examples
Example #1 A Phar::interceptFileFuncs example
Assuming that this phar is at
Example #2 A Phar::interceptFileFuncs example
Normally PHP would search the current directory for |