我可以通过浏览器运行它,但不能从命令行运行
即 php test.php
$raw = Cassandra::cluster()
->withContactPoints('localhost')
//->withCredentials($this->username, $this->password)
->build();
var_dump($raw);
die;
从浏览器:
对象(Cassandra\DefaultCluster)#2 (0) { }
命令行:
PHP 致命错误:在第 2 行的 /var/www/html/test.php 中找不到类“Cassandra”
是否也可以从命令行获得相同的结果?