Skip to main content

Home/ MySQL/ Group items tagged functions

Rss Feed Group items tagged

Ken Wei

MySQL AB :: MySQL 5.0 Reference Manual :: 17.2.1 CREATE PROCEDURE and CREATE FUNCTION S... - 0 views

  • Each parameter is an IN parameter by default. To specify otherwise for a parameter, use the keyword OUT or INOUT before the parameter name.
  • Specifying a parameter as IN, OUT, or INOUT is valid only for a PROCEDURE. (FUNCTION parameters are always regarded as IN parameters.)
sloansteddi

PHP: strtotime - Manual - 0 views

shared by sloansteddi on 22 Feb 09 - Cached
  • The function expects to be given a string containing a US English date format and will try to parse that format into a Unix timestamp
  • echo strtotime("now"), "\n";echo strtotime("10 September 2000"), "\n";echo strtotime("+1 day"), "\n";echo strtotime("+1 week"), "\n";echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";echo strtotime("next Thursday"), "\n";echo strtotime("last Monday"), "\n";
1 - 7 of 7
Showing 20 items per page