質問

My directory looks like this

enter image description here

Then my code looks like this:

require "aws.*";

use Aws\DynamoDb\DynamoDbClient;

Is this the right way to do it?

It doesn't show me an error or anything so I don't know if it's working or not.

役に立ちましたか?

解決

You can

include 'aws.phar';

or

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

or read documentation about using phar

P.S. you cannot use wildcards in require or include.

P.P.S. use is not a reference. Read more about use.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top