|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2009-09-26 06:13 UTC] rossinidan at gmail dot com
Description:
------------
I have installed successfully 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 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
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Nov 04 19:00:02 2025 UTC |
Please check the latest release (0.9.1), on PHP 5.2.11-dev I can't reproduce this bug (maybe it's already fixed). I've made a small change to your decode file (besides changing bytecode filename): <?php /* decodeBcompiler.php */ $fp = fopen("bug-16849-class.pbc","r"); bcompiler_read ($fp) ; fclose($fp); $hello = new Greeting("hello") ; $hello->showMessage(); ?> When I run this script, I see the expected output: $ ./php bug-16849-run.php hello