1

最近用php连接hive,找到了php-thrift-sql,发现readme里面有一句:
第一次接触是韩老大的创建swooole打包文章

php -c php.ini build.php

因为php.ini中phar.readonly默认是on的,而我们这里需要解包打包使用,所以要配置如下

[Phar]
; http://php.net/phar.readonly
phar.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# ls
ci_3.1.30  ci.zip  php-thrift-sql  returned.php  Thrift-origin  ThriftSQL.phar
root@tongbo:/home/tb/tmpdown# 

进入到Thrift-origin里面就可以看具体的php代码了。


牙小木木
1.5k 声望80 粉丝

iamtb.cn