最近用php連接hive,找到了php-thrift-sql(https://github.com/Automattic/php-thrift-sql),發現readme裡面有一句:
第一次接觸是韓老大的建立swooole打包文章
php -c php.ini build.php
因為php.ini中phar.readonly預設是on的,而我們這裡需要解包打包使用,所以要配置如下
[Phar] ; http://php.net/phar.readonlyphar.readonly = Off ; http://php.net/phar.require-hash;phar.require_hash = On ;phar.cache_list =
我們看程式碼裡有一個ThriftSQL.phar,想知道使用應該要看看原始碼。那要怎麼解包呢?
<?php$phar =new Phar("./ThriftSQL.phar"); $re=$phar->extractTo("Thrift-origin"); var_dump($re);
解包正確的話會回傳true,這樣路徑下會多一個Thrift-origin的文件,
php returned.php bool(true) root@tongbo:/home/tb/tmpdown# lsci_3.1.30 ci.zip php-thrift-sql returned.php Thrift-origin ThriftSQL.phar root@tongbo:/home/tb/tmpdown#
進入到Thrift-origin裡面就可以看具體的php程式碼了。
推薦:《PHP教學》
以上是關於php的打包 解包 Phar的詳細內容。更多資訊請關注PHP中文網其他相關文章!