您好,登錄后才能下訂單哦!
OPCODE是PHP編譯后的二進制代碼,生成的Opcode作為一種中間語言,可以幫助實現(xiàn)PHP源程序代碼的不開源,當然,這種代碼也很容易被反編譯,不過對于一些簡單的場景也是很足夠了。
編譯的基本思路是首先在php.ini中配置加載opcache擴展,并配置相關(guān)參數(shù),然后執(zhí)行一個PHP腳本遍歷源代碼目錄,并進行編譯,核心的函數(shù)是opcache_compile_file(),該函數(shù)會根據(jù)php.ini中的參數(shù),編譯并輸出二進制代碼。
首先,配置PHP.INI文件中的opcache相關(guān)參數(shù),以開啟OPCACHE功能:
zend_extension=php_opcache.dll
[opcache]
; Determines if Zend OPCache is enabled
opcache.enable=1
; Determines if Zend OPCache is enabled for the CLI version of PHP
opcache.enable_cli=1
; The amount of memory for interned strings in Mbytes.
opcache.interned_strings_buffer=8
; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 100000 are allowed.
opcache.max_accelerated_files=8000
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
opcache.validate_timestamps=0
; If disabled, all PHPDoc comments are dropped from the code to reduce the
; size of the optimized code.
opcache.save_comments=0
; Enables and sets the second level cache directory.
; It should improve performance when SHM memory is full, at server restart or
; SHM reset. The default "" disables file based caching.
opcache.file_cache=C:\MyApp\www\cache
; Enables or disables opcode caching in shared memory.
opcache.file_cache_only=0
從網(wǎng)上得到一段編譯的代碼,自己根據(jù)實際情況修改了一下,代碼如下:
<?php
/**
* Created by PhpStorm.
* User: Lancelot
* Date: 2018-02-09
* Time: 14:04
*/
$dir = $argv[1];
opcache_compile_files($dir);
function opcache_compile_files($dir) {
$cacheMd5 = file_get_contents("cacheMd5.txt");
foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir)) as $v) {
if(!$v->isDir() && preg_match('%\.php$%', $v->getRealPath())) {
$phpFile = $v->getRealPath();
if (filesize($phpFile) > 2) {
if (opcache_compile_file($phpFile)) {
$search = $dir;
$append = str_replace(':', '', $dir);
$repl = 'C:\BeyondScreen\www\cache\\' . $cacheMd5 . '\\' . $append;
$cachePath = str_replace($search, $repl, $phpFile) . '.bin';
if (file_exists($cachePath)) {
echo "{$phpFile}\n";
file_put_contents($phpFile, ''); //清空原來的PHP腳本
}
}
}
}
}
}
上面代碼的思路是遍歷傳入的源文件目錄,對找到的PHP文件進行編譯,然后檢查輸出路徑中是否有已經(jīng)編譯成功的文件,如果有,則把源PHP文件內(nèi)容清空,這樣服務器就會直接調(diào)用編譯后的代碼,而不是重新編譯了。
使用方法(假設上面代碼的php文件名為opcache_compile_file.php),第一個參數(shù)的值為待編譯的PHP源代碼目錄:
php opcache_compile_file.php "C:\BeyondScreen\www\byserver"
在實現(xiàn)上面的PHP代碼編譯過程中,遇到了一些問題,如下:
1、 源目錄中的文件沒有全部編譯;
我們的框架是Yii2,編譯后發(fā)現(xiàn)框架的很多代碼沒有編譯,沒有時間去查找原因,只是在編譯腳本中增加了一些邏輯,只對內(nèi)容不為空的PHP文件進行編譯,然后編譯時執(zhí)行兩遍編譯命令來確保全部PHP文件都被編譯。
2、 部分PHP文件編譯失??;
大多數(shù)問題是XXX類已經(jīng)存在,所以編譯失敗,處理方案是編譯腳本中檢查編譯結(jié)果,對于編譯失敗的PHP文件不清空。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。