真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

PHP代碼編譯為OPCODE

簡介

OPCODE是PHP編譯后的二進制代碼,生成的Opcode作為一種中間語言,可以幫助實現(xiàn)PHP源程序代碼的不開源,當然,這種代碼也很容易被反編譯,不過對于一些簡單的場景也是很足夠了。
編譯的基本思路是首先在php.ini中配置加載opcache擴展,并配置相關(guān)參數(shù),然后執(zhí)行一個PHP腳本遍歷源代碼目錄,并進行編譯,核心的函數(shù)是opcache_compile_file(),該函數(shù)會根據(jù)php.ini中的參數(shù),編譯并輸出二進制代碼。

成都創(chuàng)新互聯(lián)是一家專業(yè)提供同心企業(yè)網(wǎng)站建設(shè),專注與成都網(wǎng)站設(shè)計、網(wǎng)站制作、HTML5、小程序制作等業(yè)務(wù)。10年已為同心眾多企業(yè)、政府機構(gòu)等服務(wù)。創(chuàng)新互聯(lián)專業(yè)網(wǎng)站建設(shè)公司優(yōu)惠進行中。

準備工作

首先,配置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ù)實際情況修改了一下,代碼如下:

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)容清空,這樣服務(wù)器就會直接調(diào)用編譯后的代碼,而不是重新編譯了。

使用方法(假設(shè)上面代碼的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文件不清空。


分享文章:PHP代碼編譯為OPCODE
文章位置:http://weahome.cn/article/jcspdh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部