如何正确创建,然后需要PHAR文件?

时间:2016-07-05 23:02:16

标签: php phar

我目前正在尝试打包库代码,然后将其发送给实际尝试使用该库代码的人。创建PHAR文件后,我正在尝试使用简单的测试脚本验证它是否已正确完成。在某些时候 create-PHAR - > use-PHAR 进程,我做错了。

如何正确创建,然后需要PHAR文件?

为了使PHAR的制作和验证变得简单,我将所有内容限制在问题的简化版本中,但仍然无法继续。

这是我的文件:

~/phar-creation-and-require-test/
    mylibrary.php
    testoflibrary.php
    make-phar.php
    make-phar.sh
    mylibrary.phar (after being created)

mylibrary.php内容:

<?
class FooClass {
    private $foonum;

    function FooClass() {
        $this->foonum = 42;
    }
}
?>

make-phar.php内容:

<?php
if ($argc < 3) {
    print 'You must specify files to package!';
    exit(1);
}
$output_file = $argv[1];
$project_path = './';
$input_files = array_slice($argv, 2);

$phar = new Phar($output_file);
foreach ($input_files as &$input_file) {
    $phar->addFile($project_path, $input_file);
}

$phar->setDefaultStub('mylibrary.php');

make-phar.sh调用:

#!/usr/bin/env bash

rm mylibrary.phar
php --define phar.readonly=0 ./make-phar.php mylibrary.phar \
    phar-index.php

我可以毫无错误地运行make-phar.sh,并创建mylibrary.phar

测试脚本testoflibrary.php因此是:

<?php
require_once 'phar://' . __DIR__ . '/mylibrary.phar';  // This doesn't work.
//require_once 'mylibrary.php';  // This would work, if un-commented.

$foo = new FooClass();
print_r($foo);

当我使用php testoflibrary.php运行时,我收到此错误:

Fatal error: Class 'FooClass' not found in /Users/myusername/phar-creation-and-require-test/testoflibrary.php on line 5

要达到这种状态,我一直在阅读the docsthis tutorialthis tutorialThis SO question似乎没有提供我需要的信息,也没有提供this question,而且我似乎无法在此处找到任何其他相关问题/答案。

所以,问题(再次)是,

如何正确创建,然后需要PHAR文件?

1 个答案:

答案 0 :(得分:4)

一次添加一个文件(即使只有一个文件)也会失败。只需从包含所有库源文件的整个目录中构建PHAR文件即可。

e.g。使用这样的项目结构:

libraryproject/
    src/
        subfolder1/
            athing.php
            anotherthing.php
        athing.php
        anotherthing.php
        phar-index.php       (main file that imports the rest of the library)
    make-phar.sh
    make-phar.php
    mylibrary.phar           (after creation)
    test-the-lib-works.php

make-phar.php脚本应该是这样的:

<?php
$phar = new Phar('mylibrary.phar');
$phar->buildFromDirectory('src/');  // This does the thing you actually want.
$phar->setDefaultStub('phar-index.php');

然后make-phar.sh脚本是这样的:     #!/ usr / bin / env bash

rm mylibrary.phar
php --define phar.readonly=0 ./make-phar.php