|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-05-30 06:58 UTC] esad at esse dot at
[2008-06-17 05:22 UTC] tomasz at yzeo dot fr
[2008-08-29 07:48 UTC] dave at webvariants dot de
[2011-01-24 05:12 UTC] mahamud at databizsoftware dot com
[2013-02-23 14:18 UTC] pollita@php.net
[2013-02-23 14:18 UTC] pollita@php.net
-Status: Open
+Status: Closed
-Assigned To:
+Assigned To: pollita
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 14 13:00:01 2025 UTC |
Description: ------------ I'm using php 5.2.6 win32 binaries together with collection of PECL-5.2.6 binaries. I enabled the php_runkit.dll in php.ini, it shows up as loaded in phpinfo(). I can use stuff like runkit_superglobals() without problems, yet when I try to execute the code containing any call to runkit_function_*, PHP will just silently terminate. runkit version shows up as 1.0.0-dev, I tried downloading the 0.9 release from pecl4win, but the same happens. I also tried enabling runkit.internal_override, didn't help. Reproduce code: --------------- <?php function original() { echo "In a function\n"; } runkit_function_copy('original','duplicate'); original(); duplicate(); ?> Expected result: ---------------- In a function In a function Actual result: -------------- PHP terminates, no output