如何在php中虚拟调用页面?

时间:2016-02-04 14:09:12

标签: php

有没有办法在PHP中虚拟调用页面?

我在

中获得了分析代码

www.domain.com/somepage.php

我想在另一个页面内执行一个函数时调用此页面。

现在我不是在讨论iframe或echo。我是指虚拟负载。

2 个答案:

答案 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")