Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zenovich/runkit
Runkit (official PECL PHP Runkit extension)
https://github.com/zenovich/runkit
Last synced: 8 days ago
JSON representation
Runkit (official PECL PHP Runkit extension)
- Host: GitHub
- URL: https://github.com/zenovich/runkit
- Owner: zenovich
- License: other
- Created: 2009-10-19T20:49:50.000Z (about 15 years ago)
- Default Branch: master
- Last Pushed: 2016-08-13T16:21:30.000Z (about 8 years ago)
- Last Synced: 2024-08-01T13:19:34.327Z (3 months ago)
- Language: C
- Homepage: http://pecl.php.net/runkit
- Size: 749 KB
- Stars: 610
- Watchers: 62
- Forks: 137
- Open Issues: 10
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
Runkit extension for PHP
========================For all those things you.... probably shouldn't have been doing anyway.... but surely do!
---------------------
Feel free to support Dmitry Zenovich via PayPal ([email protected]) if Runkit serves you.
By making donation you invest in the project's future, helping it to be compatible with current PHP versions
and to have less bugs and more features.
---------------------Runkit has three groups of features outlined below:
[CUSTOM SUPERGLOBALS]
A new .ini entry `runkit.superglobal` is defined which may be specified as a simple variable, or list of simple variables to be registered as
superglobals. runkit.superglobal is defined as PHP_INI_SYSTEM and must be set in the system-wide php.ini.Example:
php.ini:
runkit.superglobal=foo,bartest.php:
function testme() {
echo "Foo is $foo\n";
echo "Bar is $bar\n";
echo "Baz is $baz\n";
}
$foo = 1;
$bar = 2;
$baz = 3;testme();
Outputs:
Foo is 1
Bar is 2
Baz isCompatability: PHP 5.0 or greater
[USER DEFINED FUNCTION AND CLASS MANIPULATION]
Userdefined functions and userdefined methods may now be renamed, delete, and redefined using the API described at http://www.php.net/runkitExamples for these functions may also be found in the tests folder.
Compatability: PHP5
[SANDBOXING]
With the introduction of TSRM based subinterpreter support a running PHP script may now generate a new thread and interactively switch contexts back and
forth between it. THIS FEATURE DOES NOT PROVIDE FULL SCRIPT THREADING. This feature only allows you to run processes in a subinterpreter optionally
with additional security.First, create an instance of the Runkit_Sandbox object:
$php = new Runkit_Sandbox();
To read and write variables in this subinterpreter, just access the properties of the object:
$php->foo = 'bar';
$php->baz = 'boom';Individual functions may also be called (executed within the newly created scope):
$php->session_start();
Or you can execute a block of arbitrary code:
$php->eval('echo "The value of foo is $foo\n";');
In this example, $foo will be interpolated as 'bar' since that's what you set it to earlier.
Certain INI Options which are ordinarily only modifiable in the system php.ini may be passed during instantiation and changed for your subinterpreter as
well, these options are passed as an associative array to the Runkit_Sandbox constructor and include the following:safe_mode safe_mode may only be turned on for a Runkit_Sandbox interpreter using this option. It cannot be turned off, doing so would
circumvent the setting specified by your system administrator in the system php.ini.open_basedir Like safe_mode, you can only use this setting to make things more restrictive.
allow_url_fopen In keeping with safe_mode, these can only be turned off (more restrictive than global environment)
allow_url_includedisable_functions Any function names specified in this coma-delimited list will be disabled IN ADDITION TO already disabled functions.
disable_classes Like disable_functions, this list is in addition to already disabled classes.
Sandboxing is ONLY AVAILABLE in PHP 5.1 (release version, or snapshot dated after April 28th, 2005) when thread safety has been enabled. To enable
thread safety, just make sure that --enable-maintainer-zts is specified on your ./configure line. This doesn't necessarily mean that your SAPI will use
PHP in a threaded manner, just that PHP is prepared to behave that way. If you're building for Apache2-Worker then you're already built for thread
safety.If you wish/need to use PHP 5.0.x, or a cvs snapshot of 5.1 which predates April 28th, you can apply the tsrm_5.0.diff patch included in this package:
cd /path/to/php-5.0.x/
cat /path/to/runkit/tsrm_5.0.diff | patch -p0Then just rebuild using the --enable-maintainer-zts option specified above.
runkit_lint() and runkit_lint_file() also exist as a simpler approach to verifying the syntactic legality of passed code within an isolated environment.
[BUILDING AND INSTALLING LATEST RELEASE WITH PECL IN UNIX]
pecl install runkit
[BUILDING AND INSTALLING CURRENT DEVELOPMENT VERSION IN UNIX]
git clone https://github.com/zenovich/runkit.git
cd runkit
phpize
./configure
make
make test
sudo make install[BUILDING THE RUNKIT MODULE FOR WINDOWS]
First, place source code of runkit into a temporary directory, for example "C:\runkit-source".
Open your Windows SDK command prompt or Visual Studio Command prompt.
Then change into the runkit's source code directory:C:
cd C:\runkit-sourceAfter that, run phpize from your PHP SDK. This may be something like
C:\php\SDK\phpize.bat
Then configure your runkit module by executing "configure". You can view the full list of options by the command
configure --help
but in most cases, you probably will choose a simple command
configure --enable-runkit
After all run
nmake
Now you should have the "php_runkit.dll" file.