PHP 的程式在公司在交付程式中, 比較麻煩的就是要如何把原始碼編譯或加密, 免費的方案, 可以考慮用 bcompiler(PHP bytecode Compiler).
不過這套於 PHP5 的物件寫法, 繼承等等, compiler 後執行會有問題, 純 function / include 等等, 是正常的.
PHP bcompiler 安裝步驟
下述環境於 Debian / Ubuntu Linux 安裝
- apt-get install libbz2-dev php-pear php5-dev # 因為 pecl compile bcompiler 需要 libbz2(bz2 library)
- pecl install channel://pecl.php.net/bcompiler-0.8 # 因為 bcompiler 是 beta, 不是 stable, 所以需要完整路徑.
- echo "extension=bcompiler.so" >> /etc/php5/conf.d/bcompile.ini
- /etc/init.d/apache2 restart
確認 Module 是否載入
- php -m | grep bcompiler
- phpinfo(); # 看是否有載入 bcompiler module
PHP bcompiler 使用
先寫一個編譯程式, 準備把 example.php 編譯成 example.phb (或 xxx.php 都可以), 詳細可見: bcompiler_write_file.
編譯其他程式用的檔案 bcompiler.php
<?php
$fh = fopen("example.phb", "w");
bcompiler_write_header($fh);
bcompiler_write_file($fh, "example.php");
bcompiler_write_footer($fh);
fclose($fh);
?>
hello.php
<?php
function hello()
{
echo "hello\n";
}
?>
example.php
<?php
include('hello.php');
hello();
?>
- 編譯: php bcompiler.php # 會發現有產生出 example.phb (或於 bcompiler.php 有另外取名字的 xxx.php)
- 執行: php example.phb # 會秀 hello, 然後此檔案已經是編譯過的 php code.
另外查到 使用 bcompiler 來編譯(加密)您的 PHP 原始碼 這篇的作者, 寫了一個 bencoder 的好用程式, 可以 compile 整個目錄, 詳細可見: BENCODER v1.3 - Encode your PHP script using bcompiler
Bencoder 安裝使用
- wget http://bencoder.urdada.net/bencoder
- chmod +x ./bencoder
- vim bencoder # 修改 php 執行路徑, Debian PHP 存放路徑在 /usr/bin/php
#!/usr/local/bin/php 改成 #!/usr/bin/php
- 執行: ./bencoder -f -o php/Breadcrumb_ben/ -s php/Breadcrumb/ -r
encoded: php/Breadcrumb_ben//first.php
encoded: php/Breadcrumb_ben//index.php
encoded: php/Breadcrumb_ben//bread.php
encoded: php/Breadcrumb_ben//second.php
請問目前 bcompile 還是不能支援 物件寫法, 繼承寫法嗎? 有其他辦法可以解決嗎?
請不吝指教... 謝謝~
沒有聽說耶, 我建議你去找一些需要付費的 compile, free 的好像還沒有看到可以支援物件的.
為什麼我用這個方法弄出來的檔案用記事本還是看到內容的??
阿? 跟原本檔案內容都一樣?
try php_screw
感謝指點~ Orz..
如題,
但是最好免費,
之前付費的也找不到破解版....
沒有耶, 免費版我指推薦 bcompile, 不過, 如果會賺錢的話, 我建議還是用付費版得, 畢竟有人維護, 出問題有人可以找, 會比較方便點.
phpinfo();
看是否有載入 bcompiler module
要怎麼看....
哈哈,沒常識
phpinfo() 裡面應該可以找到 bcompile 的字吧?
我現在也不確定, 這已經是好幾年前的東西, 很久沒用過了耶. Orz..
Fatal error: Call to undefined function bcompiler_write_header() in xxxxxx.php on line 3
是不是代表我主機沒安裝bcompiler,
不然版主都用什麼加密原始檔??
1. 沒安裝
2. 我現在都不加密原始檔了. XD
cat "extension=bcompiler.so" >> /etc/php5/conf.d/bcompiler.ini
^^^ cat 應該是 echo
如果用 cat 的話,應該要用 cat > /etc/php5/conf.d/bcompiler.ini
對耶, 寫錯了.. 感謝指正. 🙂
php5.3 後有 phar 可以使用了
感謝提供~ 😀