|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
|
Thank you for your help!
If the status of the bug report you submitted changes, you will be notified.
You may return here and check the status or update your report at any time. The URL for your bug report is: https://bugs.php.net/bug.php?id=69315.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2015-03-27 06:43 UTC] laruence@php.net
-Assigned To:
+Assigned To: laruence
[2015-03-27 06:43 UTC] laruence@php.net
[2015-03-28 06:59 UTC] laruence@php.net
[2015-03-28 06:59 UTC] laruence@php.net
-Status: Assigned
+Status: Closed
[2016-07-20 11:39 UTC] davey@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 13:00:01 2025 UTC |
Description: ------------ please see the test script similar issue also exists in class_exists and opcodefy to call_user_func etc Test script: --------------- <?php var_dump(function_exists("strlen")); var_dump(is_callable("strlen")); var_dump(strlen("aaaa")); ?> Expected result: ---------------- bool(false) bool(false) NULL Actual result: -------------- in PHP7: bool(false) bool(true) int(4)