|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
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 16: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)