PHP   发布时间:2022-04-04  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了如何修复PHP中的最大执行时间错误?大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个PHP页面,每分钟都通过CRON作业运行.

我已经运行了一段时间,但突然开始出现以下错误

@H_164_6@maximum execution time of 30 seconds exceeded in /home2/sharingi/public_html/scrape/functions.PHP on line 84

行号将随每个错误而变化,范围从行70到90年代.

这是0-95行中的代码

function crawl_page( $base_url, $target_url, $userAgent, $links)
{
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_USERAGENT, $userAgent);
    curl_setopt($ch, CURLOPT_URL,$target_url);
    curl_setopt($ch, CURLOPT_FAILONERROR, falsE);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, truE);
    curl_setopt($ch, CURLOPT_AUTOREFERER, truE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,truE);
    curl_setopt($ch, CURLOPT_TIMEOUT, 100);
    curl_setopt($ch, CURLOPT_MAXREDIRS, 10); //follow up to 10 redirections - avoids loops

    $html = curl_exec($ch);

    if (!$html) 
    {
        echo "<br />cURL error number:" .curl_errno($ch);
        echo "<br />cURL error:" . curl_error($ch);
        //exit;
    }

    //
    // load scrapped data into the DOM
    //

    $dom = new DOMDocument();
    @$dom->loadHTML($html);

    //
    // get only LINKS from the DOM with XPath
    //

    $xpath = new DOMXPath($dom);
    $hrefs = $xpath->evaluate("/html/body//a");

    //
    // go through all the links and store to db or whatever
    //  

    for ($i = 0; $i < $hrefs->length; $i++) 
    {
        $href = $hrefs->item($i);
        $url = $href->getAttribute('href');

        //if the $url does not contain the web site base address: http://www.thesite.com/ then add it onto the front

        $clean_link = clean_url( $base_url, $url, $target_url);
        $clean_link = str_replace( "http://" , "" , $clean_link);
        $clean_link = str_replace( "//" , "/" , $clean_link);

        $links[] = $clean_link;

        //removes empty array values

        foreach($links as $key => $value) 
        { 
            if($value == "") 
            { 
                unset($links[$key]); 
            } 
        } 
        $links = array_values($links); 

        //removes javascript lines

        foreach ($links as $key => $value)
        {
            if ( strpos( $value , "javascript:") !== falSE )
            {
                unset($links[$key]);
            }
        }
        $links = array_values($links);

        // removes @ lines (email)

        foreach ($links as $key => $value)
        {
            if ( strpos( $value , "@") !== falSE || strpos( $value, 'mailto:') !== falSE)
            {
                unset($links[$key]);
            }
        }
        $links = array_values($links);
    }   

    return $links; 
}

是什么导致这些错误,如何防止它们发生?

解决方法:

您应该使用set_time_limit函数设置max_execution时间.如果您想要无限的时间(很可能是您的情况),请使用:

set_time_limit(0);

大佬总结

以上是大佬教程为你收集整理的如何修复PHP中的最大执行时间错误?全部内容,希望文章能够帮你解决如何修复PHP中的最大执行时间错误?所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: