Register for your free account! | Forgot your password?

Go Back   elitepvpers > Coders Den > Web Development
You last visited: Today at 04:59

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[PHP]wie bei fb vor xx min

Discussion on [PHP]wie bei fb vor xx min within the Web Development forum part of the Coders Den category.

Reply
 
Old   #1
 
elite*gold: 517
The Black Market: 109/0/0
Join Date: Dec 2012
Posts: 2,156
Received Thanks: 132
[PHP]wie bei fb vor xx min

Hey,

ich suche jemanden der der mir ein Script macht wie bei Fb wo dann zb. vor 12 minuten
steht

biete bis zu 31eg

lg
Hujas.
Rockvolution is offline  
Old 04/08/2013, 21:59   #2
 
boxxiebabee's Avatar
 
elite*gold: 746
Join Date: May 2008
Posts: 1,200
Received Thanks: 496
Quote:
Originally Posted by Hujas. View Post
Hey,

ich suche jemanden der der mir ein Script macht wie bei Fb wo dann zb. vor 12 minuten
steht

biete bis zu 31eg

lg
Hujas.
PHP Code:
function time_ago($date,$granularity=2) {
    
$date strtotime($date);
    
$difference time() - $date;
    
$periods = array('decade' => 315360000,
        
'year' => 31536000,
        
'month' => 2628000,
        
'week' => 604800
        
'day' => 86400,
        
'hour' => 3600,
        
'minute' => 60,
        
'second' => 1);
    
$retval '';
    foreach (
$periods as $key => $value) {
        if (
$difference >= $value) {
            
$time floor($difference/$value);
            
$difference %= $value;
            
$retval .= ($retval ' ' '').$time.' ';
            
$retval .= (($time 1) ? $key.'s' $key);
            
$granularity--;
        }
        if (
$granularity == '0') { break; }
    }
    return 
' posted '.$retval.' ago';      
}

echo 
time_ago("2013-04-08 11:45"); 


Warte auf meine 31eg :P
boxxiebabee is offline  
Thanks
3 Users
Reply




All times are GMT +1. The time now is 04:59.


Powered by vBulletin®
Copyright ©2000 - 2023, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2023 elitepvpers All Rights Reserved.