私は別のサーバーでホストされているphp関数を実行しようとしています。php別のサーバーからのファイルを含む
firstdomain.com/handler.phpで:ここでは、関連するコードです
include 'http://www.seconddomain.com/functions.php';
$disp_keyword = doQuery(0, $keyword, null);
そしてseconddomain.com/functions.php中:
function doQuery($code, $arg1, $arg2) {
mail('[email protected]', 'doquery entered', 'test');
}
私はこれが動作するように取得できますか?
'allow_url_fopen'が有効で、' allow_url_include'が有効であることを確認する必要があります。また、あなたがリモートに含むファイルの内容を知っていることを_確かに確かめてください。それは100%信頼されています。 –
http://www.php.net/manual/en/features.remote-files.phpとhttp://www.php.net/manual/en/function.include.php –