0

使用文件编译器会对第一次主页点击造成一些压力,直到编译 css 文件,从而欺骗访问者认为网站速度很慢,

我已经成功地将函数路由到 ajax 女巫工作得很好,但我不能放手,因为它绑定到 js 并且很想用 php 做到这一点

ajax mootools

new Request({
url: linktofile... and basic responses 

什么都不做,只是访问 php 文件,上面写着

// sitename.com/?view=custom
file_get_contents('OF_THE_website_but_different_view');

那么我将如何从 php 尝试执行此操作exec(),无法开始工作(WAMP 本地) CURL,就像我file_get_contents()在主页中做的一样,并再次减慢一切,试图查看如何proc_open()工作,但我无法弄清楚

因此,如果有人可以让我使用任何 php 函数作为 ajax 的后备并file_get_contents()在后端调用我的文件而不会减慢主页速度。

请不要建议 SHELL 、 CRON 或任何其他语言,但 PHP

谢谢!

4

1 回答 1

0

基金真棒参考

PHP 后台进程仍然影响页面加载

http://php.net/features.connection-handling#71172

header("Connection: close");
ob_start();
phpinfo();// or my page buffer previously saved in variable
$size=ob_get_length();
header("Content-Length: $size");
ob_end_flush();
flush();
file_get_contents('OF_THE_website_but_different_view');

像魅力一样工作

于 2012-10-20T01:50:01.480 回答