當前位置: 首頁>>代碼示例>>PHP>>正文


PHP parseDate函數代碼示例

本文整理匯總了PHP中parseDate函數的典型用法代碼示例。如果您正苦於以下問題:PHP parseDate函數的具體用法?PHP parseDate怎麽用?PHP parseDate使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了parseDate函數的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: changelogDate

 function changelogDate($version)
 {
     //
     $file = file('data/changelogs/' . $version . '.txt');
     $date = substr(trim($file[0]), 1, -1);
     $date = parseDate($date);
     return date('jS F, Y', $date);
 }
開發者ID:fewizz,項目名稱:modlist,代碼行數:8,代碼來源:mods.php

示例2: parseDateTime

function parseDateTime($datetime)
{
    $reArr = array();
    $timeArr = array();
    list($date, $time) = explode(" ", $datetime);
    $reArr = parseDate($date);
    $timeArr = explode(":", $time);
    $reArr = array_merge($reArr, $timeArr);
    return $reArr;
}
開發者ID:quangbt2005,項目名稱:vhost-kis,代碼行數:10,代碼來源:common.php

示例3: blockMoney

 function blockMoney($dabAccount, $idCardNo, $epsAccount, $orderID, $orderAmount, $orderDate)
 {
     if (!defined('DAB_TOOLS')) {
         return 0;
     }
     $function = "bid";
     $this->addSOAPHeader($function);
     $arrOrderDate = parseDate($orderDate);
     $sourceDate = $arrOrderDate[0] . $arrOrderDate[1] . $arrOrderDate[2] . date("His");
     $transferDate = $arrOrderDate[0] . $arrOrderDate[1] . $arrOrderDate[2];
     $result = $this->soapClient->call($function, $params = array('custaccount' => $dabAccount, 'CID' => $idCardNo, 'scraccount' => $epsAccount, 'refno' => $orderID, 'amount' => $orderAmount, 'scrdate' => $sourceDate, 'transferflag' => 0, 'transferdate' => $transferDate), $this->soapOptions);
     $content = date("d/m/Y H:i:s") . "\tcustaccount => {$dabAccount}, CID => {$idCardNo}, scraccount => {$epsAccount}, refno => {$orderID}, amount => {$orderAmount}, scrdate => {$sourceDate}, transferdate => {$transferDate} \t--> {$result}";
     write_log($function, $content, DAB_LOG_FILE_PATH);
     /*write_my_log_path('DAB-connect',$_SERVER['REMOTE_ADDR'].' function_name blockMoney custaccount '.$dabAccount.' CID '.$idCardNo.' epsAccount '.$epsAccount.' refno '.$orderID.' amount '.$orderAmount.' sourceDate '.$sourceDate.' transferdate '.$transferDate.'  ' .date('Y-m-d h:i:s'),DAB_PATH.'logs/');*/
     return $result;
 }
開發者ID:quangbt2005,項目名稱:vhost-kis,代碼行數:16,代碼來源:dab.php

示例4: saveMessage

function saveMessage($obj)
{
    global $MENSAGENS;
    //Salva a mensagem enviada pela text area
    $mensagem = $obj['mensagem'];
    unset($obj['mensagem']);
    $fileName = sprintf("messages/%s%s.json", parseDate($obj['data']), $obj['email']);
    $file = fopen($fileName, "w");
    fwrite($file, $mensagem);
    fflush($file);
    fclose($file);
    //Salva os dados de quem enviou a mensagem
    $msgsArr = getMessagesArray();
    $msgsArr[] = $obj;
    $json['mensagens'] = $msgsArr;
    $file = fopen($MENSAGENS, "w");
    fwrite($file, json_encode($json));
    fflush($file);
    fclose($file);
}
開發者ID:xlbruce,項目名稱:fale-conosco,代碼行數:20,代碼來源:functions.php

示例5: parseHTTPDate

 /**
  * Parses a RFC2616-compatible date string
  *
  * This method returns false if the date is invalid
  *
  * @deprecated Use parseDate
  * @param string $dateHeader
  * @return bool|DateTime
  */
 static function parseHTTPDate($dateHeader)
 {
     return parseDate($dateHeader);
 }
開發者ID:sebbie42,項目名稱:casebox,代碼行數:13,代碼來源:Util.php

示例6: setDateEnd

 function setDateEnd($date_end = "", $time_end = "")
 {
     $datestring = parseDate($date_end . " " . $time_end);
     $this->date_end = substr($datestring, 0, 10);
     $this->time_end = substr($datestring, 11, 8);
 }
開發者ID:highchair,項目名稱:hcd-trunk,代碼行數:6,代碼來源:event.php

示例7: while

while (date('W', $daystart) == date('W', $week_start)) {
    $weekdays[$i] = $daystart;
    $daystart += 86400;
    $i++;
}
echo '<table width="100%">' . chr(10);
foreach ($weekdays as $daynum => $weekday) {
    echo '<tr>' . chr(10);
    if ($daynum == 6 || $daynum == 7) {
        echo ' <td style="background-color: #FFFFCC;">' . chr(10);
    } else {
        echo ' <td>' . chr(10);
    }
    echo '<a class="graybg" href="day.php?year=' . date('Y', $weekday) . '&amp;month=' . date('m', $weekday) . '&amp;day=' . date('d', $weekday) . '&amp;area=' . $area . '&amp;room=' . $room . '">';
    echo '<b>' . ucfirst(strtolower(parseDate(strftime("%A", $weekday)))) . '</b>';
    echo '<br>' . ucfirst(strtolower(parseDate(strftime("%d. %B", $weekday))));
    echo '</td>' . chr(10);
    if ($daynum == 6 || $daynum == 7) {
        echo ' <td style="background-color: #FFFFCC;">' . chr(10);
    } else {
        echo ' <td>' . chr(10);
    }
    $entries = array();
    $timed_entries = array();
    foreach ($rooms as $room_id => $room) {
        $start = mktime(0, 0, 0, date('m', $weekday), date('d', $weekday), date('Y', $weekday));
        $end = mktime(23, 59, 59, date('m', $weekday), date('d', $weekday), date('Y', $weekday));
        $events_room = checktime_Room($start, $end, $area, $room_id);
        if (isset($events_room[$room_id])) {
            foreach ($events_room[$room_id] as $entry_id) {
                $event = getEntry($entry_id);
開發者ID:HNygard,項目名稱:JM-booking,代碼行數:31,代碼來源:week.php

示例8: parseDate

include '../5d6s4fds65/db_params.php';
// Get birthday
$year = $_POST['year'];
$month = $_POST['month'];
$day = $_POST['day'];
$date = "{$year}/{$month}/{$day}";
// Parse date string into 0000-00-00
function parseDate($date)
{
    $timestamp = strtotime($date);
    $parsed = date("Y-m-d", $timestamp);
    return $parsed;
}
// Final string
$birth = parseDate($date);
$username = addslashes($_POST['username']);
$mail = addslashes($_POST['mail']);
$password = $_POST['password'];
$conn = mysqli_connect(HOST, USER, PASSWORD, DB);
$requete = "INSERT INTO users (mail, password, username, birth) VALUES ('{$mail}','{$password}','{$username}','{$birth}')";
if (!mysqli_query($conn, $requete)) {
    echo mysqli_error($conn);
}
if (!$conn) {
    die('Connexion impossible : ' . mysql_error());
    echo "failed";
} else {
    echo "success";
}
?>
開發者ID:GaelCoat,項目名稱:serieManager,代碼行數:30,代碼來源:signIn.php

示例9: printLayOver

function printLayOver($firstid, $secondid)
{
    $layover = oci_fetch_row(executePlainSQL("select F2.departtime-F1.arrivaltime from Flight F1, Flight F2\n\t\t\t\t\t\t\t\t\twhere F1.fid='{$firstid}' AND F2.fid='{$secondid}'"));
    $layovertime = parseDate($layover[0], 2);
    echo "<br>Lay over for {$layovertime}";
}
開發者ID:holybom,項目名稱:ubcair,代碼行數:6,代碼來源:oci_functions.php

示例10: printFlights

function printFlights($flights, $locations)
{
    echo "<p><br>Search Results: <br></p>";
    echo "<form method='POST' action='reservation.php'>";
    echo '<table class = "pure-table pure-table-bordered">';
    // print the top row (attribute labels)
    echo '<thead>';
    echo "<tr><th>Departure Airport</th><th>City</th><th>Country</th>" . "<th>Arrival Airport</th><th>City</th><th>Country</th><th>Departure Time (GMT)</th>" . "<th>Total Flight Time</th><th>COST (CAD)</th><th>Choose Flight</th></tr>";
    echo '</thead>';
    // print the data rows (tuples)
    $it = 0;
    while ($flight = OCI_Fetch_Array($flights, OCI_ASSOC)) {
        $printout = "<tr>";
        foreach ($locations as $value) {
            $printout = $printout . "<td>{$value}</td>";
        }
        $departtime = parseDate($flight['DT1'], 1);
        $flighttime = parseDate($flight['TOTALTIME'], 2);
        $cost = $flight['TOTALPRICE'];
        $fclassint = 0;
        // Variable costs depends on class
        if (strcmp($_COOKIE['flightclass'], "economy") == 0) {
            $cost *= 1;
            $fclassint = 1;
        } else {
            if (strcmp($_COOKIE['flightclass'], "business") == 0) {
                $cost *= 3;
                $fclassint = 3;
            } else {
                if (strcmp($_COOKIE['flightclass'], "first") == 0) {
                    $cost *= 5;
                    $fclassint = 5;
                }
            }
        }
        // update the cost if the class is changed
        $flight['TOTALPRICE'] = $cost;
        // Add class and num tickets to the post array
        $flight['CLASS'] = $_COOKIE['flightclass'];
        $flight['CLASSINT'] = $fclassint;
        $flight['NUMTICKETS'] = $_COOKIE['numtickets'];
        $flight_string = serialize($flight);
        echo $printout . "<td>{$departtime}</td><td>{$flighttime}</td><td>{$cost}</td>";
        echo "<td><input type='radio' name='flightchoice' value='{$flight_string}' required></td></tr>";
        echo "<tr><td>";
        printDetails($flight, $it, 1);
        echo "</td></tr>";
        $it++;
    }
    echo "</table>";
    echo "<input type='submit' value='Book my flight'></form>";
}
開發者ID:holybom,項目名稱:ubcair,代碼行數:52,代碼來源:flights.php

示例11: Warn

                     Warn("Value {$uservalue} added to attribute {$att['2']}");
                     $user_att_value = Sql_Insert_Id();
                 } else {
                     $d = Sql_Fetch_Row($val);
                     $user_att_value = $d[0];
                 }
                 break;
             case "checkbox":
                 if ($uservalue && $uservalue != "off") {
                     $user_att_value = "on";
                 } else {
                     $user_att_value = "off";
                 }
                 break;
             case "date":
                 $user_att_value = parseDate($uservalue);
                 break;
             default:
                 $user_att_value = $uservalue;
                 break;
         }
         Sql_query(sprintf('replace into %s (attributeid,userid,value) values(%d,%d,"%s")', $tables["user_attribute"], $attribute_index, $userid, $user_att_value));
     } else {
         if ($item["record"] != "skip") {
             # add an empty entry if none existed
             Sql_Query(sprintf('insert ignore into %s (attributeid,userid,value) values(%d,%d,"")', $tables["user_attribute"], $item["record"], $userid));
         }
     }
 }
 $current_data = Sql_Fetch_Array_Query(sprintf('select * from %s where id = %d', $tables["user"], $userid));
 $current_data = array_merge($current_data, getUserAttributeValues('', $userid));
開發者ID:alancohen,項目名稱:alancohenexperience-com,代碼行數:31,代碼來源:importcsv.php

示例12: get_the_permalink

        echo 'id="next"';
    }
    ?>
>
			<a href="<?php 
    echo get_the_permalink();
    ?>
">
				<div class="hidden-sm hidden-xs hidden-md cd-timeline-img cd-picture <?php 
    if ($post->ID == $nextEvent) {
        echo 'next-project';
    }
    ?>
">
					<span><?php 
    echo parseDate($date);
    ?>
</span>
				</div>
			</a> <!-- cd-timeline-img -->
			<div class="mobile-no-margin cd-timeline-content <?php 
    echo $class . '-wrap';
    ?>
 <?php 
    if ($j == 0) {
        echo 'first';
    }
    ?>
">
			
				<div class="wow animated slideInUp">
開發者ID:eq0rip,項目名稱:srijanalaya,代碼行數:31,代碼來源:archive-project.php

示例13: parseDate

 if ($_contestant1birthdate != "NULL") {
     $_contestant1birthdate = '"' . $_contestant1birthdate . '"';
 }
 $_contestant2passportdate = parseDate($contestant2passportdate);
 if ($_contestant2passportdate != "NULL") {
     $_contestant2passportdate = '"' . $_contestant2passportdate . '"';
 }
 $_contestant2birthdate = parseDate($contestant2birthdate);
 if ($_contestant2birthdate != "NULL") {
     $_contestant2birthdate = '"' . $_contestant2birthdate . '"';
 }
 $_contestant3passportdate = parseDate($contestant3passportdate);
 if ($_contestant3passportdate != "NULL") {
     $_contestant3passportdate = '"' . $_contestant3passportdate . '"';
 }
 $_contestant3birthdate = parseDate($contestant3birthdate);
 if ($_contestant3birthdate != "NULL") {
     $_contestant3birthdate = '"' . $_contestant3birthdate . '"';
 }
 if (isFullFilled($fill)) {
     $fullfilled = 1;
 } else {
     $fullfilled = 0;
 }
 $query = "insert into teams(teamname, city, studyplace, address, phone, fax,\n          contactname, contactphone, contactmail,\n          headname, headpost,\n          headpassportno, headpassportplace, headpassportdate, headbirthdate, headaddress, headinn,\n          coachname, coachpost,\n          coachpassportno, coachpassportplace, coachpassportdate, coachbirthdate, coachaddress, coachinn,\n          contestant1name,\n          contestant1studyplace, contestant1faculty, contestant1classcourse, contestant1age,\n          contestant1passportno, contestant1passportplace, contestant1passportdate,\n          contestant1birthdate, contestant1address, contestant1inn,\n          contestant2name,\n          contestant2studyplace, contestant2faculty, contestant2classcourse, contestant2age,\n          contestant2passportno, contestant2passportplace, contestant2passportdate, \n          contestant2birthdate, contestant2address, contestant2inn,\n          contestant3name,\n          contestant3studyplace, contestant3faculty, contestant3classcourse, contestant3age,\n          contestant3passportno, contestant3passportplace, contestant3passportdate,\n          contestant3birthdate, contestant3address, contestant3inn,\n          `password`, contestteamid,\n          language,\n          fullfilled)\n        values(\"{$teamname}\", \"{$city}\", \"{$studyplace}\", \"{$address}\", \"{$phone}\", \"{$fax}\",\n          \"{$contactname}\", \"{$contactphone}\", \"{$contactmail}\",\n          \"{$headname}\", \"{$headpost}\",\n          \"{$headpassportno}\", \"{$headpassportplace}\", " . $_headpassportdate . ",\n          " . $_headbirthdate . ", \"{$headaddress}\", \"{$headinn}\",\n          \"{$coachname}\", \"{$coachpost}\",\n          \"{$coachpassportno}\", \"{$coachpassportplace}\", " . $_coachpassportdate . ",\n          " . $_coachbirthdate . ", \"{$coachaddress}\", \"{$coachinn}\",\n          \"{$contestant1name}\",\n          \"{$contestant1studyplace}\", \"{$contestant1faculty}\", \"{$contestant1classcourse}\", {$contestant1age},\n          \"{$contestant1passportno}\", \"{$contestant1passportplace}\", " . $_contestant1passportdate . ",\n          " . $_contestant1birthdate . ", \"{$contestant1address}\", \"{$contestant1inn}\",\n          \"{$contestant2name}\", \n          \"{$contestant2studyplace}\", \"{$contestant2faculty}\", \"{$contestant2classcourse}\", {$contestant2age},\n          \"{$contestant2passportno}\", \"{$contestant2passportplace}\", " . $_contestant2passportdate . ",\n          " . $_contestant2birthdate . ", \"{$contestant2address}\", \"{$contestant2inn}\",\n          \"{$contestant3name}\", \n          \"{$contestant3studyplace}\", \"{$contestant3faculty}\", \"{$contestant3classcourse}\", {$contestant3age},\n          \"{$contestant3passportno}\", \"{$contestant3passportplace}\", " . $_contestant3passportdate . ",\n          " . $_contestant3birthdate . ", \"{$contestant3address}\", \"{$contestant3inn}\",\n          password(\"{$password}\"),\n          {$contestteamid},\n          \"{$language}\",\n          {$fullfilled})";
 if (@(!mysql_query($query))) {
     $error = true;
     $msg = 'Не удалось провести добавление новой команды [' . mysql_error() . ', code=' . mysql_errno() . ', sql=' . $query . ']. Попробуйте повторить попытку позже';
 } else {
     $success = true;
     $datamsg = 'Добавление новой команды проведено успешно.';
開發者ID:bearf,項目名稱:xicl-web-interface,代碼行數:31,代碼來源:editinfo.php

示例14: getDetails

function getDetails($bigTuple, $numFlights)
{
    $fid1 = $bigTuple['FID1'];
    $departFlight = oci_fetch_assoc(executePlainSQL("select * from Flight where fid='{$fid1}'"));
    $departDate = parseDate($departFlight['DEPARTTIME'], 1);
    $departApCode = $departFlight['DEPARTAP'];
    $departAp = oci_fetch_assoc(executePlainSQL("select CITY, COUNTRY from Airport where code='{$departApCode}'"));
    $departCity = $departAp['CITY'];
    $departCountry = $departAp['COUNTRY'];
    if ($numFlights == 1) {
        $arrivalFlight = $departFlight;
    } else {
        if ($numFlights == 2) {
            $fid2 = $bigTuple['FID2'];
            $arrivalFlight = oci_fetch_assoc(executePlainSQL("select * from Flight where fid='{$fid2}'"));
        } else {
            $fid3 = $bigTuple['FID3'];
            $arrivalFlight = oci_fetch_assoc(executePlainSQL("select * from Flight where fid='{$fid3}'"));
        }
    }
    $arrivalApCode = $arrivalFlight['ARRIVALAP'];
    $arrivalAp = oci_fetch_assoc(executePlainSQL("select * from Airport where code='{$arrivalApCode}'"));
    $arrivalCity = $arrivalAp['CITY'];
    $arrivalCountry = $arrivalAp['COUNTRY'];
    $flightLoc = array("DEPARTDATE" => $departDate, "DEPARTCITY" => $departCity, "DEPARTCOUNTRY" => $departCountry, "ARRIVALCITY" => $arrivalCity, "ARRIVALCOUNTRY" => $arrivalCountry);
    return $flightLoc;
}
開發者ID:holybom,項目名稱:ubcair,代碼行數:27,代碼來源:list_reservation.php

示例15: display_page_content


//.........這裏部分代碼省略.........
    $count_dashes = 0;
    if (BLOG_INSTALL) {
        ?>
	<div class="dashboard-widget column">
		<h1><?php 
        echo ucwords(BLOG_STATIC_AREA);
        ?>
 Entries</h1>
		<p>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/list_entries");
        ?>
">List Entries</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/edit_entry/add");
        ?>
">Add Entry</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/list_categories");
        ?>
">List Categories</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/add_category");
        ?>
">Add Category</a>
		</p>
		<h4>Recently Added Entries:</h4>
		<ul>
		<?php 
        $entries = MyActiveRecord::FindBySQL('Blog_Entries', "SELECT * FROM blog_entries ORDER BY date DESC LIMIT 5");
        if (!empty($entries)) {
            foreach ($entries as $entry) {
                $entrypublic = $entry->public ? "" : "<span class=\"red\">(not public)</span>";
                $entry_date = parseDate($entry->date, "m/d g:i A");
                echo "<li>\n\t\t\t\t\t\t\t<a class=\"item-link\" href=\"" . get_link("admin/edit_entry/" . $entry->id) . "\">" . $entry->get_title() . "</a>\n\t\t\t\t\t\t\t<span class=\"item-revised\">{$entry_date}</span>\n\t\t\t\t\t\t\t<span class=\"item-public\">{$entrypublic}</span>\n\t\t\t\t\t\t</li>";
            }
        }
        ?>
		</ul>
	</div>
<?php 
        $count_dashes++;
    }
    if (PORTFOLIO_INSTALL) {
        ?>
	<div class="dashboard-widget column">
		<h1>Portfolio</h1>
		<p>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/portfolio_list");
        ?>
">List Items</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/portfolio_add_item");
        ?>
">Add Item</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/portfolio_add_section");
        ?>
">Add Section</a>
			<a class="hcdbutton" href="<?php 
        echo get_link("admin/portfolio_add_area");
        ?>
">Add Area</a>
		</p>
		<h4>Recently Added/Edited Items:</h4>
開發者ID:highchair,項目名稱:hcd-trunk,代碼行數:67,代碼來源:index.php


注:本文中的parseDate函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。