1
2
3
4
5
6
7
8
9
10
11
12
| <?php
include 'listing1.php';
// Use the stripes function I declared in my namespace:
zebra\stripes();
// Use my own DateTime class:
$dt = new zebra\DateTime();
// Now use the 'root' level Datetime class:
$real = new \DateTime('tomorrow noon');
echo $real->format(\DateTime::ATOM);
|