有没有办法在PHP中虚拟调用页面?
我在
中获得了分析代码www.domain.com/somepage.php
我想在另一个页面内执行一个函数时调用此页面。
现在我不是在讨论iframe或echo。我是指虚拟负载。
答案 0 :(得分:0)
我真的不明白你的意思"虚拟"负荷。
如果要在php页面中包含php脚本,可以使用include函数:
<?php
// Include and execute what's inside somefile.php
inclucde 'somefile.php';
// Your code here
答案 1 :(得分:0)
如果您的意思是&#34;下载&#34;通过虚拟,您可以使用file_get_contents("http://myurl.com/page")