ID: 44820
Updated by: [EMAIL PROTECTED]
Reported By: neel dot get at gmail dot com
-Status: Open
+Status: Wont fix
Bug Type: Scripting Engine problem
Operating System: CentOs
PHP Version: 4.3.10
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