Raised This Month: $ Target: $400
 0% 

dele


  
 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
fysiks
Veteran Member
Join Date: Sep 2007
Location: Flatland, USA
Old 03-24-2011 , 19:15   Re: how to get the date
Reply With Quote #3

Quote:
Originally Posted by katna View Post
You can take a look at exolent code of unbantime
PHP Code:
GenerateUnbanTime(const bantimeunban_time[], len)
{
    static 
_hours[5], _minutes[5], _seconds[5], _month[5], _day[5], _year[7];
    
format_time(_hourssizeof(_hours) - 1"%H");
    
format_time(_minutessizeof(_minutes) - 1"%M");
    
format_time(_secondssizeof(_seconds) - 1"%S");
    
format_time(_monthsizeof(_month) - 1"%m");
    
format_time(_daysizeof(_day) - 1"%d");
    
format_time(_yearsizeof(_year) - 1"%Y");
    
    new 
hours str_to_num(_hours);
    new 
minutes str_to_num(_minutes);
    new 
seconds str_to_num(_seconds);
    new 
month str_to_num(_month);
    new 
day str_to_num(_day);
    new 
year str_to_num(_year);
    
    
minutes += bantime;
    
    while( 
minutes >= 60 )
    {
        
minutes -= 60;
        
hours++;
    }
    
    while( 
hours >= 24 )
    {
        
hours -= 24;
        
day++;
    }
    
    new 
max_days GetDaysInMonth(monthyear);
    while( 
day max_days )
    {
        
day -= max_days;
        
month++;
    }
    
    while( 
month 12 )
    {
        
month -= 12;
        
year++;
    }
    
    
formatex(unban_timelen"%i:%02i:%02i %i/%i/%i"hoursminutessecondsmonthdayyear);
}

GetDaysInMonth(monthyear=0)
{
    switch( 
month )
    {
        case 
1:        return 31// january
        
case 2:        return ((year 4) == 0) ? 29 28// february
        
case 3:        return 31// march
        
case 4:        return 30// april
        
case 5:        return 31// may
        
case 6:        return 30// june
        
case 7:        return 31// july
        
case 8:        return 31// august
        
case 9:        return 30// september
        
case 10:    return 31// october
        
case 11:    return 30// november
        
case 12:    return 31// december
    
}
    
    return 
30;

Wow. That's a lot of code. Here is a much simpler form:

PHP Code:
GenerateUnbanTime(const bantime_minutesunban_time[], len)
{
    new 
timestamp get_systime()
    
timestamp += (bantime_minutes 60)
    
format_time(unban_timelen"%H:%M:%S %m/%d/%y"timestamp)

__________________
fysiks is offline
 



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 14:36.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode