I'm using bencoder v1.6 and latest bcompiler (http://pecl.php.net/get/bcompiler) -- 1.0.2 at time of writing this -- and I ran a test on PHP5 static class functions and regular class functions, and then ran a test with __FILE__. I encountered no problems. So, at least the static class issue and the __FILE__ issue is resolved now.
However, please continue your testing and reporting bugs (https://bugs.php.net/report.php?package=bcompiler).
Fonctions bcompiler
Contact
Si vous avez des commentaires, des corrections de bogues, des améliorations ou que vous voulez aider à rendre cette extension meilleure, vous pouvez envoyer un message à » alan_k@php.net. Toute aide est vraiment la bienvenue.
Sommaire
- bcompiler_load_exe — Lit et crée des classes depuis un fichier exe bcompiler
- bcompiler_load — Lit et crée les classes depuis un fichier compressé en bzip2
- bcompiler_parse_class — Lit le bytecode d'une classe et revient à une fonction utilisateur
- bcompiler_read — Lit et crée les classes depuis un pointeur de fichier
- bcompiler_write_class — Écrit une classe définie en bytecode
- bcompiler_write_constant — Écrit une constante définie comme bytecode
- bcompiler_write_exe_footer — Écrit à la position start et jusqu'à la fin du fichier de type exe
- bcompiler_write_file — Écrit un code source PHP sous forme de bytecode
- bcompiler_write_footer — Écrit le caractère \x00 pour indiquer la fin des données compilées
- bcompiler_write_function — Écrit une fonction définie sous forme de bytecode
- bcompiler_write_functions_from_file — Écrit toutes les fonctions définies dans un fichier sous forme de bytecode
- bcompiler_write_header — Écrit l'en-tête bcompiler
- bcompiler_write_included_filename — Écrit un fichier inclus en tant que bytecode
volomike ¶
9 months ago
Albert Kok ¶
5 years ago
A few notes to succesfully configure PHP5 to load bcompiler.
In case of using Debian/Ubuntu Linux: When installing from the PECL (PEAR) package, make sure you have the php5-dev library installed in your system (apt-get install php5-dev).
Newer versions of Ubuntu may error out while installing bcompiler thru PECL, asking you to reinstall bzip2. This will not fix the installation. Instead, install the libbz2-dev library (apt-get install libbz2-dev) and try installing bcompiler from PECL again.
After installing bcompiler from PECL, don't forget to make sure you load the bcompiler.so library in your PHP configuration for the new bcompiler functions to become available. This is done by adding the following line to the bottom of your php.ini file(s):
extension=bcompiler.so
If you were to use the bcompiler functions thru your webserver, you need to restart it to reload the php configuration.
Regards,
Albert Kok
mail - at- albertkok - dot - com ¶
3 years ago
It's been a while since my past post, but yes, I'm still using bcompiler. I just found another problem that I think you should be aware of. It took me hours to find.
It pretty much comes to this: When compiling on a 64-bit Linux operating system, your compiled code will NOT run on a 32-bit version, and visa versa. It will merely echo the file's content.
Regards,
Albert Kok
codeslinger+uph80111 at compsalot dot com ¶
5 years ago
try this, I believe that it will solve the problem with __FILE__
<?php
eval("\$Foo = dirname(__FILE__);");
echo "\n<br>FILE = '$Foo'\n";
?>
roberto at spadim dot net dot br ¶
5 years ago
hello guys, since bencoder don't work for __FILE__ constants i have a bcompiler script working, anyone that want it can send me an email
the source is 100% compatible with original file, the only problem is php5 new function methods that
<?
if (!function_exists('function_name')){
function function_name()
}
?>
don't work but it's a php5 new method for understand bytecode
cdsheen+bencoder at gmail dot com ¶
6 years ago
Here's a script to act as a front-end for bcompiler, which may be very similar to the eA ones:
http://bbs.giga.net.tw/bencoder.php
BENCODER v1.1 - Encode your PHP script using bcompiler
Usage: bencoder [-f] -o FILE file1.php
bencoder [-f] -o OUTDIR file1.php file2.php ...
bencoder [-f] -o OUTDIR -a SRCDIR [-s SUFFIX] [-c] [-r]
-f : force overwriting even if the target exists
-o FILE : the file name to write the encoded script
(default to '-encoded.php' suffix)
-o OUTDIR : the directory to write all encoded files
-a SRCDIR : encode all files in this source directory
-s SUFFIX : encode the files with the SUFFIX extension only (default: php)
-c : copy files those shouldn't be encoded (no by default)
arplynn at gmail dot com ¶
7 years ago
PHP seems to choke on trying to compile PHP5 classes with the private, protected or public modifiers. Additionally, when including files with properly compiled classes on PHP5, it works fine but when php tries to exit it throws a segmentation fault.
It's just not a great idea to use bcompiler for anything other than functions on PHP5, at least for now.
tda at example dot com ¶
7 years ago
Creating a function after checking if a function exists using function_exists will result in a "Zero Sized Reply" error.
<?php
this does NOT work any longer:
if (!function_exists("file_get_contents")) {
function file_get_contents($filename, $use_include_path = 0)
{ /*...define your own function here...*/ }
}
?>
Apache returns: "Zero Sized Reply" after compilation.
