Skip to content

Instantly share code, notes, and snippets.

@florida
Created October 18, 2012 19:58
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save florida/3914434 to your computer and use it in GitHub Desktop.
Save florida/3914434 to your computer and use it in GitHub Desktop.
PHP
<?php
// This will get today's date
$today = getdate();
print "Today is $today[month] $today[mday], $today[year]";
// Creating a new DateTime object
$new_date = new DateTime('02/31/2011');
?>
<?php
define("BR", "<br />");
?>
<?php
// Wordwrapping in php
$quote = "This is an example of using the built in word wrap function in php, it's currently set to wrap 20 characters";
//wordwrap(text, characters, linebreaks)
$wordwrapped = wordwrap($quote, 20, "<br />\n");
echo $wordwrapped;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment