Advertisement
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.
https://www.boards.ie/group/1878-subscribers-forum

Private Group for paid up members of Boards.ie. Join the club.

simple php question

  • 18-07-2007 10:19AM
    #1
    Registered Users, Registered Users 2 Posts: 648 ✭✭✭


    hi
    i have created a function which will allow me to display different timezone times.

    my only problem is that when i pass in $hourchange as -1 or +5 or whatever it will not work

    anyone know where the issue is

    function getTimeZoneTime($hourchange=''){
    $serveroffset=6;
    $currenttime=mktime((date("h")+$serveroffset).$hourchange, date("i"),date("s"), date("m")  , date("d"), date("Y"));
    echo date("F j, Y, g:i a",$currenttime);
    }
    


    tnx


Comments

  • Closed Accounts Posts: 18,163 ✭✭✭✭Liam Byrne


    The dot operator (".") is for strings, not numbers

    date("h")+$serveroffset).$hourchange


Advertisement