Merge pull request #170 from telephone/unify

Unified conditional arguments and replaced APC example
This commit is contained in:
Josh Lockhart
2012-08-15 05:31:43 -07:00
3 changed files with 11 additions and 15 deletions

View File

@@ -16,7 +16,7 @@ output.
$raw = '22. 11. 1968';
$start = \DateTime::createFromFormat('d. m. Y', $raw);
echo "Start date: " . $start->format('m/d/Y') . "\n";
echo 'Start date: ' . $start->format('m/d/Y') . "\n";
{% endhighlight %}
Calculating with DateTime is possible with the DateInterval class. DateTime has methods like `add()` and `sub()` that
@@ -30,7 +30,7 @@ $end = clone $start;
$end->add(new \DateInterval('P1M6D'));
$diff = $end->diff($start);
echo "Difference: " . $diff->format('%m month, %d days (total: %a days)') . "\n";
echo 'Difference: ' . $diff->format('%m month, %d days (total: %a days)') . "\n";
// Difference: 1 month, 6 days (total: 37 days)
{% endhighlight %}
@@ -49,10 +49,9 @@ DateTime objects, start and end, and the interval for which it will return all e
// output all thursdays between $start and $end
$periodInterval = \DateInterval::createFromDateString('first thursday');
$periodIterator = new \DatePeriod($start, $periodInterval, $end, \DatePeriod::EXCLUDE_START_DATE);
foreach($periodIterator as $date)
{
foreach ($periodIterator as $date) {
// output each date in the period
echo $date->format('m/d/Y') . " ";
echo $date->format('m/d/Y') . ' ';
}
{% endhighlight %}

View File

@@ -28,15 +28,12 @@ Example logic using APC:
{% highlight php %}
<?php
// check if there is data saved as 'expensive_data' in cache
$data = apc_fetch('expensive_data');
if (!$data)
{
// data not in cache, do expensive call and save for later use
$data = get_expensive_data();
apc_store('expensive_data', $data);
if (apc_fetch('expensive_data') === false) {
// data is not in cache; save expensive call for later use
apc_add('expensive_data', get_expensive_data());
}
print_r($data);
print_r(apc_fetch('expensive_data'));
{% endhighlight %}
Learn more about popular object caching systems: