我正在尝试对我的服务器进行HTTP调用,但我理解HTTP调用是从端口80进行的。但我的服务器是端口7430.如何编写php脚本来更改它以便我可以创建HTTP电话?我是新手,并试图弄清楚谢谢
编辑:这是我编写的名为test.php的php脚本,它似乎无法正常工作<?php
$file = fopen ("http://localhost:7430/herp/derp.json", "r");
if (!$file) {
echo "<p>Unable to open remote file.\n";
exit;
}
?>
它假设获得JSON响应。从Javascript我发出http get请求http://localhost:7430/herp/test.php。有人能告诉我我做错了吗?