如何包含.phar并引用它

时间:2013-05-14 01:00:35

标签: php amazon-web-services phar

我的目录看起来像这样

enter image description here

然后我的代码看起来像这样:

require "aws.*";

use Aws\DynamoDb\DynamoDbClient;

这是正确的方法吗?

它没有向我显示错误或任何其他内容,所以我不知道它是否正常工作。

1 个答案:

答案 0 :(得分:1)

你可以

include 'aws.phar';

include 'phar://aws.phar/internal/file.php';

或阅读有关using phar

的文档

P.S。你不能在require或include中使用通配符。

P.P.S。 use不是参考。 Read more about use