>  기사  >  백엔드 개발  >  PHP创建phar文档,有很多不明白的地方,运行报错

PHP创建phar文档,有很多不明白的地方,运行报错

WBOY
WBOY원래의
2016-06-06 20:43:071418검색

我想把index.php这个文件打包成phar文档:
其文件组织是这样的:
PHP创建phar文档,有很多不明白的地方,运行报错
index.php与1.php在同一个目录。
index.php 里面只有一个hello world
然后在1.php里面代码是这样的:

<code class="lang-php"><?php /**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2014/9/16
 * Time: 21:45
 */

$phar = new Phar('user.phar', 0, 'user.phar');
$phar->buildFromDirectory(dirname(__FILE__) . '/index.php');
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));
$phar->compressFiles(Phar::GZ);
</code>

运行结果报错了:
PHP创建phar文档,有很多不明白的地方,运行报错
为啥会错呢?
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));参数错了吗?
这个stub是个啥东西?
这个1.php是直接运行就可以了还是使用php命令行 运行呢?
求大神解答

回复内容:

我想把index.php这个文件打包成phar文档:
其文件组织是这样的:
PHP创建phar文档,有很多不明白的地方,运行报错
index.php与1.php在同一个目录。
index.php 里面只有一个hello world
然后在1.php里面代码是这样的:

<code class="lang-php"><?php /**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2014/9/16
 * Time: 21:45
 */

$phar = new Phar('user.phar', 0, 'user.phar');
$phar->buildFromDirectory(dirname(__FILE__) . '/index.php');
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));
$phar->compressFiles(Phar::GZ);
</code>

运行结果报错了:
PHP创建phar文档,有很多不明白的地方,运行报错
为啥会错呢?
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));参数错了吗?
这个stub是个啥东西?
这个1.php是直接运行就可以了还是使用php命令行 运行呢?
求大神解答

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.