コントローラファイルからCakePHPのサードパーティライブラリ関数を呼び出そうとしています。
私はこれを私のコントローラーファイルに持っています:
public function index() {
App::import('vendor', 'simple-html-dom.php');
App::import('vendor', 'utils.php');
set_time_limit(0);
$html = file_get_html("google.com");
...
}
私もとファイルのapp/vendor
両方にあります。simple-html-dom.php
utils.php
file_get_html
のパブリック関数ですsimple-html-dom.php
(どのクラスにも属していません)。私はこのエラーで終わります:
Error: Call to undefined function file_get_html()
私はこれを解決する方法を探していましたが、答えが見つかりませんでした。