ID: 49680
Updated by: [email protected]
Reported By: rossinidan at gmail dot com
-Status: Open
+Status: Bogus
Bug Type: Unknown/Other Function
Operating System: Debian Squeeze 2.6.30-1-686
PHP Version: 5.2.11
New Comment:
Report bcompiler bugs to pecl.
Previous Comments:
------------------------------------------------------------------------
[2009-09-26 10:04:38] rossinidan at gmail dot com
Description:
------------
ully bcompiler 0.8s on php 5.2.10-2.2 with debian 2.6.30-1-686, but
when I try to use bcompiler-load on a class this does't work. It work if
I use the functions.
Reproduce code:
---------------
<?php
/*Class test */
class Greeting{
var $message;
function Greeting($message){
$this->message = $message;
}
function showMessage(){
echo( $this->message) ;
}
}
?>
<?php
/* Source to encode */
include('classTest.php') ;
$fp = fopen("/tmp/test.pbc","w");
bcompiler_write_header($fp);
bcompiler_write_class($fp,"Greeting");
bcompiler_write_footer($fp);
fclose($fp);
?>
<?php
/* decodeBcompiler.php */
$fp = fopen("/tmp/test.pbc","r");
bcompiler_read ($fp) ;
fclose($fp);
$hello = new Greeting() ;
?>
Expected result:
----------------
Read and create a class with bcompiler
Actual result:
--------------
When I try to execute the decodeBcompiler.php the browser call me to
import and the file decodeBcompiler.php.
I have installed php, php-pear, php-cli with apt-get command and
bdecode with:
pecl install bcompiler-0.8
After I have added extension=bcompiler.so to /etc/php5/apache2/php.ini
Greetings,
Danilo Rossini
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=49680&edit=1