当前位置:Gxlcms > PHP教程 > PHP创建phar文档,有很多不明白的地方,运行报错

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

时间:2021-07-01 10:21:17 帮助过:6人阅读

我想把index.php这个文件打包成phar文档:
其文件组织是这样的:

index.php与1.php在同一个目录。
index.php 里面只有一个hello world
然后在1.php里面代码是这样的:

buildFromDirectory(dirname(__FILE__) . '/index.php');
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));
$phar->compressFiles(Phar::GZ);

运行结果报错了:

为啥会错呢?
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));参数错了吗?
这个stub是个啥东西?
这个1.php是直接运行就可以了还是使用php命令行 运行呢?
求大神解答

回复内容:

我想把index.php这个文件打包成phar文档:
其文件组织是这样的:

index.php与1.php在同一个目录。
index.php 里面只有一个hello world
然后在1.php里面代码是这样的:

buildFromDirectory(dirname(__FILE__) . '/index.php');
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));
$phar->compressFiles(Phar::GZ);

运行结果报错了:

为啥会错呢?
$phar->setStub($phar->createDefaultStub('1.php', '1.php'));参数错了吗?
这个stub是个啥东西?
这个1.php是直接运行就可以了还是使用php命令行 运行呢?
求大神解答

人气教程排行