ID:               44820
 User updated by:  neel dot get at gmail dot com
 Reported By:      neel dot get at gmail dot com
 Status:           Wont fix
 Bug Type:         Scripting Engine problem
 Operating System: CentOs
 PHP Version:      4.3.10
 New Comment:

Sourceforge.net's PHP version have that Bug and I asked sourceforge
Team to fix it with teh latest Update. But that replied that they are
planing to Upgrade to PHP5 within few days.
But They didnt mention the Length of that "Few Days"


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

[2008-04-28 06:02:20] crrodriguez at suse dot de

We are sorry, but we can not support PHP 4 related problems anymore.
Momentum is gathering for PHP 6, and we think supporting PHP 4 will
lead to a waste of resources which we want to put into getting PHP 6
ready.

Thanks for your interest in PHP.

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

[2008-04-24 16:33:32] neel dot get at gmail dot com

version Corrected

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

[2008-04-24 16:22:37] neel dot get at gmail dot com

Description:
------------
running on PHP version 4.3.10
Server for Sourceforge.net Projects
This code Returns not output on Browser 

Lynx says
Alert!: Unexpected network read error;connection aborted.
Alert!: Unable to access document.

If running the same script through PHP CLI Running version (4.3.9)
returns expected result on terminal
X-Powered-By: PHP/4.3.9
Content-Type: text/plain

called create ()
called enargise ()


Reproduce code:
---------------
<?php
header('Content-Type: text/plain');
class Life{
        function __call ($method, $args, &$return){
                $return =  'called ' . $method . ' (' . implode (',',
$args) . ')';
                return true;
        }
}
overload('Life');
$creation = new Life();
echo $creation->create()."\n";
echo $creation->enargise()."\n";
?>


Expected result:
----------------
called create ()
called enargise ()

Actual result:
--------------
NO output on Browser
Lynx reports
Alert!: Unexpected network read error;connection aborted.
Alert!: Unable to access document.


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


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

Reply via email to