|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2014-11-19 17:43 UTC] requinix@php.net
-Status: Open
+Status: Not a bug
[2014-11-19 17:43 UTC] requinix@php.net
[2014-11-23 05:33 UTC] reginx at qq dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 14:00:01 2025 UTC |
Description: ------------ about __autoload on php 5.4.33, it's a bug? Test script: --------------- <?php function __autoload ($class) { exit ("class " . $class . PHP_EOL); } // output class foo- // it works on php 5.3 // but doesn't works on php 5.4 $class = 'foo-'; new $class();