我制作了一个PHP脚本来获取Google有关游戏的一些信息,然后我返回结果并进行必要的处理并在结果之上执行其他功能。
我想使用Yahoo,Bing和另外两个搜索引擎进行相同的搜索,并且需要尽快完成,优化执行速度。
index.php = receives data search and call the file search.php
search.php = calls all search scripts (google.php, yahoo.php, bing.php, etc ...) and after everyone ends their respective executions, calls the init.php file
init.php = has all the data of the other files, proceeds with the treatment and analysis of data
优化执行此类任务的最佳和最快方法是什么,我需要执行“相同的过程”(类似)并同时降低脚本的执行速度。
在Google上搜索,我发现人们在谈论popen and pclose
,wget or curl
,shell_exec
等提示时提示......
如果某人已经需要做类似的事情,留下你的答案并解释为什么这是最快的方式,那么不是一个关于表现的意见问题和技巧。