Example #1
0
    print "]</td></tr>";
    $tokens = datealso($tokens);
    print "<tr><td>Tweaked tokens:</td><td>[";
    for ($i = 1; $tokens[$i]; $i++) {
        print ($i == 1 ? "" : ", ") . tokenstr($tokens[$i]);
    }
    print "]</td></tr>";
    $rules = daterules($tokens);
    print "<tr><td valign=top>Rules:</td><td>";
    dumprules($rules);
    print "</td><tr>";
    print "<tr><td>String:</td><td>";
    print daterulestr($rules);
    print "</td><tr>";
    print "<tr><td>Canonical:</td><td>";
    print repeatcanonical($rules);
    print "</td><tr>";
    print "<tr><td valign=top>Actual Dates:</td><td>";
    $dates = repeatdates($_REQUEST["repeat"]);
    for ($i = 1; $dates[$i]; $i++) {
        print $dates[$i]["sqldate"] . " ";
        print date("l, F d, Y", $dates[$i]["timestamp"]) . "<br>\n";
    }
    print "</td><tr>";
    print "</table>";
}
?>
    <hr>
      <h2>Email mangler</h2>
	<form action="repeattest.php">
	  Email: <input type=text size=40 name="email" value="<?php 
Example #2
0
function repeatdates($str)
{
    # Create an empty array
    $daylist = array();
    $d = 1;
    # Parse the dates
    $tokens = datetokens($str);
    $tokens = datealso($tokens);
    $rules = daterules($tokens);
    # Scan actual dates, starting with today and going forward 364 days
    # or until a 180 gap is detected, looking for days that meet the
    # parsed requirements.
    $date = time();
    $tm = getdate($date);
    $date += (12 - $tm["hours"]) * 3600;
    # Roughly noon today
    for ($gap = -999, $i = 0; $gap < 180 && $i < 365; $i++) {
        if (dateinstance($rules, $date)) {
            # Found one!  Append it to the list.
            $daylist[$d++] = array(timestamp => $date, sqldate => date("Y-m-d", $date), status => "Added", newdate => "Y", suffix => date("Mj", $date));
            $gap = 0;
        } else {
            $gap++;
        }
        $date += 86400;
    }
    # derive a canonical string
    if ($d == 1) {
        # for invalid strings, use it unchanged
        $canonical = $str;
        $datestype = "error";
    } else {
        if ($d == 2) {
            # for single date, use a pretty form of that date
            $canonical = date("l, F j", $daylist[1]["timestamp"]);
            $datestype = "one";
        } else {
            if ($d > 2) {
                # for multiple days, check to see if consecutive.
                for ($i = 1; $i < $d - 1 && $daylist[$i]["timestamp"] > $daylist[$i + 1]["timestamp"] - 99999; $i++) {
                }
                if ($i == $d - 1) {
                    # Consecutive -- express it as a range of dates
                    $canonical = date("F j", $daylist[1]["timestamp"]) . " - ";
                    if (substr($daylist[2]["sqldate"], 1, 7) == substr($daylist[$d - 1]["sqldate"], 1, 7)) {
                        $canonical .= date("j", $daylist[$d - 1]["timestamp"]);
                    } else {
                        $canonical .= date("F j", $daylist[$d - 1]["timestamp"]);
                    }
                    $datestype = "consecutive";
                } else {
                    # Not consecutive -- decode the rule
                    $canonical = repeatcanonical($rules);
                    $datestype = "scattered";
                }
            }
        }
    }
    # Stuff the canonical string and datestype into the returned array too
    $daylist["canonical"] = $canonical;
    $daylist["datestype"] = $datestype;
    return $daylist;
}