ID:               44848
 User updated by:  nicolas dot grekas+php at gmail dot com
 Reported By:      nicolas dot grekas+php at gmail dot com
-Status:           No Feedback
+Status:           Open
 Bug Type:         Scripting Engine problem
 Operating System: *
 PHP Version:      5.*CVS, 6CVS (2009-01-21)
 New Comment:

I just tried this on the command line :
http://windows.php.net/downloads/snaps/php-5.2-nts-win32-VC6-x86-latest.zip

still doesn't work sorry


Previous Comments:
------------------------------------------------------------------------

[2009-04-07 01:00:00] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2009-03-30 18:08:01] j...@php.net

Please try using this CVS snapshot:

  http://snaps.php.net/php5.2-latest.tar.gz
 
For Windows:

  http://windows.php.net/snapshots/



------------------------------------------------------------------------

[2009-01-05 20:59:06] pinochet dot pl at gmail dot com

I have the same behavior on 5.3 version and 1.01.2009 Snap UBUNTU 8.10

------------------------------------------------------------------------

[2008-11-03 10:49:21] nicolas dot grekas+php at gmail dot com

Doesn't work with windows snaps [2008-Nov-03 08:00:00].
I got exactly the same behavior

------------------------------------------------------------------------

[2008-06-05 08:33:59] jille at hexon dot cx

I tried creating a work-around for this.
However, this didn't work:
So class B is half-existent ?
You can not define it, but it also doesn't exists...

<?php

  function __autoload($class)
  {
          switch ($class)
          {
          case 'A':
          case 'B':
                  if(class_exists('B', false))
                    return;
                  class B extends C {};
                  break;

          case 'C':
                  class C {};
                  class A extends B {};
                  break;

          }
  }

  echo (int) class_exists('A');
?>

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/44848

-- 
Edit this bug report at http://bugs.php.net/?id=44848&edit=1

Reply via email to