php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Return to Bug #63741
Patch bug63741.phpt revision 2012-12-14 06:29 UTC by bobwei9 at hotmail dot com
revision 2012-12-12 21:42 UTC by bobwei9 at hotmail dot com
revision 2012-12-12 20:42 UTC by bobwei9 at hotmail dot com
revision 2012-12-12 18:59 UTC by bobwei9 at hotmail dot com
Patch bug63741.patch revision 2012-12-14 02:33 UTC by laruence@php.net
revision 2012-12-14 02:33 UTC by laruence@php.net

Patch bug63741.phpt for SPL related Bug #63741

Patch version 2012-12-12 18:59 UTC

Return to Bug #63741 | Download this patch
This patch is obsolete

Obsoleted by patches:

Patch Revisions: 2012-12-14 06:29 UTC | 2012-12-12 21:42 UTC | 2012-12-12 20:42 UTC | 2012-12-12 18:59 UTC

Developer: bobwei9@hotmail.com

Line 1 (now 1), was 12 lines, now 9 lines

  --TEST--
  Bug #63741 (Crash when autoloading from spl)
  --FILE--
  <?php
 file_put_contents(dirname(__FILE__)."/bug63741.tmp.php",
 <<<'EOT'
 <?php
 if (isset($autoload))
 if (isset($autoloading))
  {
          class ClassToLoad
          {
                  static function func ()


  {
          static function autoload($classname)
          {
                  print "autoloading...\n";
                 $autoload = true;
                 $autoloading = true;
                  include __FILE__;
          }
  }
  
Line 35 (now 32), was 14 lines, now 7 lines

  }
  
  start();
  ?>
 EOT
 );
 
 include dirname(__FILE__)."/bug63741.tmp.php";
 ?>
 --CLEAN--
 <?php unlink(dirname(__FILE__)."/bug63741.tmp.php"); ?>
  --EXPECT--
  autoloading...
  OK!
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Sat May 18 14:01:35 2024 UTC