大家好 想請問use使用上的問題
因為想使用PHP操作R語言
所以引用了一個github專案的PHP 網址:https://github.com/kachkaev/php-r
根據他的程式碼範例如下
use Kachkaev\PHPR\RCore;
use Kachkaev\PHPR\Engine\CommandLineREngine;
$r = new RCore(new CommandLineREngine('/path/to/R'));
$result = $r->run(<<<EOF
x = 1
y = 2
x + y
x + z
x - y
EOF
);
echo $result;
現在的問題點是前兩行程式是引用他整個類別失敗
出現Fatal error: Class 'Kachkaev\PHPR\RCore' not found in
C:\wamp\www\php-r-master\src\Kachkaev\Test.php on line 11
困難點是我不懂use這項引用究竟是如何使用
或者是說我應該如何正確的引用他的類別
希望大家能幫幫忙 謝謝各位