|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2020-04-24 03:14 UTC] 392223903 at qq dot com
Description:
------------
(1).php.ini conf
disable_classes = com
(2).php code check
var_dump(class_exists('Com')); //return true ? I disabled it! why ?
But the disable_functions configuration item and function_exists method are correct。
this bug in php5.x-php7.x version
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 10:00:02 2025 UTC |
This is not a documentation issue. Because using the disable_functions configuration item and function_exists method to judge is correct Examples: 1.disable_functions = md5 2.var_dump(function_exists ('md5')); //this return false disable_classes + class_exists Does not match disable_functions + function_exists Is a match