91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP代碼編譯為OPCODE

發布時間:2020-06-03 17:48:14 來源:網絡 閱讀:6989 作者:tywali 欄目:web開發

簡介

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

準備工作

首先,配置PHP.INI文件中的opcache相關參數,以開啟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

編譯

從網上得到一段編譯的代碼,自己根據實際情況修改了一下,代碼如下:

<?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文件進行編譯,然后檢查輸出路徑中是否有已經編譯成功的文件,如果有,則把源PHP文件內容清空,這樣服務器就會直接調用編譯后的代碼,而不是重新編譯了。

使用方法(假設上面代碼的php文件名為opcache_compile_file.php),第一個參數的值為待編譯的PHP源代碼目錄:

php opcache_compile_file.php "C:\BeyondScreen\www\byserver"

幾個問題

在實現上面的PHP代碼編譯過程中,遇到了一些問題,如下:
1、 源目錄中的文件沒有全部編譯;
我們的框架是Yii2,編譯后發現框架的很多代碼沒有編譯,沒有時間去查找原因,只是在編譯腳本中增加了一些邏輯,只對內容不為空的PHP文件進行編譯,然后編譯時執行兩遍編譯命令來確保全部PHP文件都被編譯。
2、 部分PHP文件編譯失敗;
大多數問題是XXX類已經存在,所以編譯失敗,處理方案是編譯腳本中檢查編譯結果,對于編譯失敗的PHP文件不清空。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

张家界市| 宣汉县| 宣武区| 卫辉市| 通海县| 当阳市| 武义县| 泗洪县| 南涧| 板桥市| 内乡县| 承德县| 区。| 阿拉善左旗| SHOW| 英山县| 陇川县| 凭祥市| 山丹县| 盘山县| 枣庄市| 西充县| 若羌县| 达尔| 常山县| 博爱县| 平舆县| 惠安县| 临颍县| 福建省| 双城市| 阜南县| 普洱| 昭觉县| 威海市| 古田县| 台南县| 蒙山县| 鄂伦春自治旗| 颍上县| 泽库县|