0

如果我禁用错误,此功能可以正常工作。但我必须解决它们。所以我启用了错误并发现了以下错误:

注意:未定义变量:第 20 行 /home/content/79/9482579/html/gamelinkexchange.com/all/function.php 中的 retval

注意:使用未定义的常量长度 - 在第 55 行的 /home/content/79/9482579/html/gamelinkexchange.com/all/function.php 中假定为“长度”

这是我的功能:

function time_ago($date,$granularity=2) {
date_default_timezone_set('Asia/Calcutta');
    $date = strtotime($date); 
    $difference = time() - $date;
    $periods = array('decade' => 315360000,
        'year' => 31536000,
        'month' => 2628000,
        'week' => 604800, 
        'day' => 86400,
        'hour' => 3600,
        'minute' => 60,
        'second' => 1);
foreach ($periods as $key => $value) {
        if ($difference >= $value) {
            $time = floor($difference/$value);
            $difference %= $value;
            $retval .= ($retval ? ' ' : '').$time.' '; /*error*/
            $retval .= (($time > 1) ? $key.'s' : $key);
            $granularity--;
        }
        if ($granularity == '0') { break; }
    }
    return $retval.' ago';      
}
function gethours($str)
{
     if(strpos($str, "decade"))
     {
        return 0;
     }
     else if(strpos($str, "year"))
     {
        return 0;
     }
     else if(strpos($str, "month"))
     {
        return 0;
     }
     else if(strpos($str, "week"))
     {
        return 0;
     }
     else if(strpos($str, "day"))
     {
        return 0;
     }
     else if(strpos($str, "hours"))
     {
        $strarr= explode(" ",$str);
        $j=0; /*error*/
        for($i=0;$i<$strarr.length;$i++)
        {
           if($strarr[$i]=="hours")
           { 
                 $j=$i-1;
           }
        }
        return $strarr[$j];
     }
else {   return 1; }
}

这个函数运行很慢,所以我需要解决这些错误。我尝试了本网站其他页面和其他论坛提供的解决方案,但没有任何帮助。请提供一个消耗较少资源的好解决方案。
我需要一个解决方案。因为每一个条目都必须经过时间。

这是我的第一个问题,我是新手,请帮助。谢谢你。

4

2 回答 2

2

我看不到你在$retval任何地方初始化你的。$retval = ''根据它的价值,您可能应该在开始向其附加任何内容之前拥有类似的东西。

关于另一个错误,您误将phpJava。在 php 中,你得到一个数组的长度,count($strarr)而不是$strarr.length

更新
而不是

$retval .= ($retval ? ' ' : '').$time.' ';  

你可以简单地使用

$retval = $time.' ';
于 2012-06-25T08:36:46.860 回答
0

换行:

$retval .= ($retval ? ' ' : '').$time.' '; /*error*/

对此:

$retval .= (isset($retval))? ' ':'';
$retval .= $time.' '; //you shouldn't have the error on that line again -- it's because
//the variable does not exist and you're sing it in a comparison

更改以下这一行:

for($i=0;$i<$strarr.length;$i++)

对此:

for($i=0;$i<count($strarr);$i++){....}
//arrays in PHP cannot be used like objects (-> not .)
于 2012-06-25T11:45:24.643 回答