从 PHP 回显本地 ASP.NET url
我有一个在 IIS 上运行的 php WordPress 网站。我需要包含来自本地 ASP.NET 页面的响应作为该文件的一部分。不过 PHP 确实不是我最强的语言。
我的代码是:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $_SERVER['DOCUMENT_ROOT']+'/GetDesigns.ashx?type=1');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$localText = curl_exec($ch);
curl_close($ch);
echo $localText;
?>
在浏览器中向 /GetDesigns.ashx?type=1 发出请求并回显字符串,但是当在页面上使用上述代码时,我什么也得不到。
有什么办法可以做到这一点还是只是我滥用 PHP?
I have a php wordpress site that's running on IIS. I need to include, as part of that file, the response from a local ASP.NET page. PHP is reallly not my strongest language though.
The code I have is:
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $_SERVER['DOCUMENT_ROOT']+'/GetDesigns.ashx?type=1');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$localText = curl_exec($ch);
curl_close($ch);
echo $localText;
?>
Making a request to /GetDesigns.ashx?type=1 works from a browser and echos a string, but when the above code is used on the page, I get nothing.
Is there any way to do this or is it just me misusing PHP?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
会给你一个文件路径。
请改用
或 硬编码地址。
will give you a file path.
Use
or a hardcoded address instead.