Pchp.Library.DateTimeFunctions.strtotime C# (CSharp) Method

strtotime() public static method

Parses a string containing an English date format into a UNIX timestamp relative to the current time.
public static strtotime ( string time ) : int
time string String containing time definition
return int
        public static int strtotime(string time)
        {
            return StringToTime(time, System_DateTime.UtcNow);
        }

Same methods

DateTimeFunctions::strtotime ( string time, int start ) : int