因此,我试图将市场从外部网站加载到我在Wordpress中创建的页面中。但是,当我成功将外部网站加载到我的页面中时,我的jQuery停止了工作。
如何在页面中包含外部网站?
以下代码确实加载了外部网站,但使我的jQuery崩溃了:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
curl_setopt($ch, CURLOPT_URL, 'https://myurl.com');
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_AUTOREFERER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
echo curl_exec($ch);
?>
此代码根本不起作用:
<?php
$somevar = file_get_contents('https://myurl.com');
echo $somevar
?>