XAMPPでLaravel 5.4、PHP 7.1を使用しています。 事前に、私はPHPWordが私に合っていないと言います。私は成功した作曲家の自動ロードを持つクラス "NCLNameCaseRu" を接続Laravel ControllerでWord Comアプリケーションを使用するには?
namespace App\Http\Controllers;
use App\Library\NCLNameCaseRu;
use DB;
class TestController extends Controller {
public function index() {
$debtid = DB::select(
"EXECUTE dbo.SP_JudgApplicationFl @DebtID = ?", array('38')
);
foreach ($debtid as $v) {
print_r($v->AccountNumber);
$word = new \COM("Word.Application", null, CP_UTF8);
$word->Visible = 0;
$word->Documents->Add("C:/xampp/htdocs/myfile.dotx");
}
}
}
しかし、私はエラー
Class 'COM' not found
を得る: 私はLaravelコントローラでCOMアプリケーションを使用したいです。しかし、私はクラスに特定のフォルダがあります。 COMアプリケーションでこれを行うにはどうしたらいいですか? PHP 5.4.5から