从另一台服务器远程执行 PHP 脚本
Executing PHP Script Remotely From Another Server
我在服务器 A 上有一个 PHP 脚本,它通过访问 url domain.com/dir/script.php
来执行。我想在服务器 B 上创建一个 PHP 脚本,该脚本将远程在服务器 A 上执行该脚本。我该怎么做?
您可以使用 file_get_contents
访问 PHP 中的 URL:
$results = file_get_contents('http://domain.com/dir/script.php');
我在服务器 A 上有一个 PHP 脚本,它通过访问 url domain.com/dir/script.php
来执行。我想在服务器 B 上创建一个 PHP 脚本,该脚本将远程在服务器 A 上执行该脚本。我该怎么做?
您可以使用 file_get_contents
访问 PHP 中的 URL:
$results = file_get_contents('http://domain.com/dir/script.php');