Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我对php很陌生。
我有两个网站: Site1 有一个代码,用于计算域名中的字符。所以我有:
echo count($letters);
这很好用。我需要的是获取这个变量并在 Site2 上回显它。我怎样才能做到这一点?Site2 在不同的服务器上。
非常简单直接的解决方案是
$content = file_get_contents('http://ww.google.com'); echo $content;
并将 google 链接替换为您的其他服务器链接