php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | |
Patch bug66218.phpt for Reflection related Bug #66218Patch version 2013-12-02 13:42 UTC Return to Bug #66218 | Download this patchThis patch is obsolete Obsoleted by patches: Patch Revisions:Developer: remi@php.net--TEST-- Bug #66218 zend_register_functions breaks reflection --SKIPIF-- <?php if (PHP_SAPI != "cli") die("Skip: CLI only test"); ?> --FILE-- <?php $tab = get_extension_funcs("standard"); $fcts = array("dl", "cli_set_process_title", "cli_get_process_title"); foreach ($fcts as $fct) { if (in_array($fct, $tab)) { echo "$fct Ok\n"; } } ?> Done --EXPECTF-- dl Ok cli_set_process_title Ok cli_get_process_title Ok Done |
Copyright © 2001-2024 The PHP Group All rights reserved. |
Last updated: Thu Nov 21 14:01:29 2024 UTC |