本文整理汇总了PHP中showDate函数的典型用法代码示例。如果您正苦于以下问题:PHP showDate函数的具体用法?PHP showDate怎么用?PHP showDate使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了showDate函数的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: showTable
function showTable($row, $count)
{
$article = file_get_contents("tableArticles.html");
$article = str_replace("{{TITLE}}", $row["title"], $article);
$article = str_replace("{{DATE}}", showDate($row["publishdate"], 1), $article);
$article = str_replace("{{COUNT}}", $row["id"], $article);
return $article;
}
示例2: getTag
public function getTag()
{
$tags = Tag::all();
return Datatables::of($tags)->edit_column('status', function ($row) {
return showSelectStatus($row->id, $row->status, 'Kacana.product.tag.setStatusTag(' . $row->id . ', 1)', 'Kacana.product.tag.setStatusTag(' . $row->id . ', 0)');
})->edit_column('created', function ($row) {
return showDate($row->created);
})->edit_column('updated', function ($row) {
return showDate($row->updated);
})->add_column('action', function ($row) {
return showActionButton('Kacana.product.tag.showEditTagForm(' . $row->id . ')', 'Kacana.product.tag.removeTag(' . $row->id . ')', true);
})->make(true);
}
示例3: GetHighScoreList
public function GetHighScoreList()
{
$output = "<ul>\n";
$query = "SELECT * FROM dicegame ORDER BY score DESC limit 5";
$result = mysqli_query($this->dbc, $query);
while ($row = mysqli_fetch_array($result)) {
$name = $row['name'];
$score = $row['score'];
$date = $row['date'];
$output .= "<li>{$name} - {$score} - " . showDate($date) . "</li>\n";
}
$output .= "</ul>\n";
return $output;
$this->Disconnect();
}
示例4: getBranch
public function getBranch()
{
$branches = Branch::all();
return Datatables::of($branches)->edit_column('image', function ($row) {
if (!empty($row->image)) {
return showImage($row->image, BRANCH_IMAGE . showDate($row->created, 1));
}
})->edit_column('status', function ($row) {
return showSelectStatus($row->id, $row->status, 'Kacana.product.branch.setStatusBranch(' . $row->id . ', 1)', 'Kacana.product.branch.setStatusBranch(' . $row->id . ', 0)');
})->edit_column('created', function ($row) {
return showDate($row->created);
})->edit_column('updated', function ($row) {
return showDate($row->updated);
})->add_column('action', function ($row) {
return showActionButton('Kacana.product.branch.showEditBranchForm(' . $row->id . ')', 'Kacana.product.branch.removeBranch(' . $row->id . ')', true);
})->make(true);
}
示例5: getProduct
/**
* get products
*
* @return Response
*/
public function getProduct()
{
$products = Product::all();
return Datatables::of($products)->edit_column('image', function ($row) {
if (!empty($row->image)) {
return showImage($row->image, PRODUCT_IMAGE . $row->id);
}
})->edit_column('status', function ($row) {
return showSelectStatus($row->id, $row->status, 'Kacana.product.setStatus(' . $row->id . ', 1)', 'Kacana.product.setStatus(' . $row->id . ', 0)');
})->edit_column('created', function ($row) {
return showDate($row->created);
})->edit_column('updated', function ($row) {
return showDate($row->updated);
})->add_column('action', function ($row) {
return showActionButton("/product/editProduct/" . $row->id, 'Kacana.product.removeProduct(' . $row->id . ')', false, false);
})->make(true);
}
示例6: getUser
public function getUser()
{
$users = User::all();
return Datatables::of($users)->edit_column('image', function ($row) {
if (!empty($row->image)) {
return showImage($row->image, PRODUCT_IMAGE . $row->id);
}
})->edit_column('status', function ($row) {
return showSelectStatus($row->id, $row->status, 'Kacana.user.setStatus(' . $row->id . ', 1)', 'Kacana.user.setStatus(' . $row->id . ', 0)');
})->edit_column('created', function ($row) {
return showDate($row->created);
})->edit_column('updated', function ($row) {
return showDate($row->updated);
})->add_column('action', function ($row) {
return showActionButton('Kacana.user.show(' . $row->id . ')', 'Kacana.product.branch.removeBranch(' . $row->id . ')', true);
})->make(true);
}
示例7: printHTMLStory2
function printHTMLStory2($story)
{
//get domain
$pattern = "^([a-zA-Z0-9]([a-zA-Z0-9\\-]{0,61}[a-zA-Z0-9])?\\.)+[a-zA-Z]{2,6}^";
preg_match($pattern, $story->link, $matches);
//var_dump($matches);
echo "<div class=\"news-summary\" about=\"" . $story->href . "\">";
echo "<div class=\"news-body\"><h3><a href=\"" . $story->link . "\">" . $story->title . "</a></h3>";
echo "<p><em class=\"source\">" . $matches[0] . " — </em>";
echo "<span>" . $story->description;
echo "<a href=\"" . $story->href . "\" class=\"more\">More … </a></span>";
echo "<span class=\"topic\">(<a href=\"http://www.digg.com/" . $story->topic_short_name . "\">" . $story->topic_name . "</a>)</span></p>";
echo "<div class=\"news-details\">";
echo " <a href=\"" . $story->href . "\" class=\"comments\">" . $story->comments . " Comments</a>";
echo "<span class=\"user-info\">";
echo "<a href=\"http://www.digg.com/users/" . $story->user_name . "\"><img src=\"" . $story->user_icon . "\" alt=\"" . $story->user_name . "\" class=\"user-photo\" height=\"16\" width=\"16\">" . $story->user_name . "</a> ";
showDate($story->status, $story->submit_date, $story->promote_date);
echo " </span></div></div>";
echo "<ul class=\"news-digg\"><li class=\"digg-count\">";
echo "<a href=\"" . $story->href . "\" >" . $story->diggs . " diggs</a></li></ul></div>\n";
}
示例8: elseif
<div class="grayBtn" onclick="libraly.del(\'' . $name . '\')">Удалить</div>
</div>
<div class="clear"></div>
</div>
</li>';
}
print '<ul class="ul tableList projectList">' . $prj . '</ul>';
}
} elseif ($action == 'sLcat') {
$read = my_fileBuld(ROOT_DIR . '/data/' . $is_logged . '/' . $idName . '/');
if (count($read['file']) > 0) {
foreach ($read['file'] as $name) {
$p++;
$p = $p > 2 ? 1 : $p;
$size = FSize(ROOT_DIR . '/data/' . $is_logged . '/' . $idName . '/' . $name);
$date = showDate(ROOT_DIR . '/data/' . $is_logged . '/' . $idName . '/' . $name);
$name = str_replace(".data", '', $name);
$prj .= '<li class="li_prj_' . $name . ' p_' . $p . '">
<div class="lineB">
<img src="lib/images/lib_ico.png" class="left" />
<div class="left textPad" style="min-width: 100px; font-weight: bold">' . $name . '</div>
<div class="left grayColor textPad" style="min-width: 200px">' . $date . '</div>
<div class="left grayColor textPad">' . $size . '</div>
<div class="right">
<div class="grayBtn" style="margin-right: 10px" onclick="libraly.editCat(\'' . $name . '\',\'' . $idName . '\')">Редактировать</div>
<div class="grayBtn" onclick="libraly.delCat(\'' . $name . '\',\'' . $idName . '\')">Удалить</div>
</div>
<div class="clear"></div>
</div>
</li>';
}
示例9: showDate
}
?>
</h2>
<div id="image">
<a href="http://i.imgush.ru/<?php
echo $this->img['image'] . '.' . $this->img['ext'];
?>
">
<img src="http://i.imgush.ru/<?php
echo $this->img['image'] . '.' . $this->img['ext'];
?>
" />
</a>
</div>
<div id="under-image">
<span>Загружена <?php
echo showDate(strtotime($this->img['date']));
?>
</span> |
<a href="http://imgush.ru/statis.php?add=gallery&name=<?php
echo $this->img['image'];
?>
">Добавить</a>
</div>
</div>
<div id="footer">
</div>
</body>
</html>
示例10: date
}
-->
</style></head>
<body>
<table width="1100" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="860" style="padding-bottom:10px;"><small>Print : <?php
echo date('d M y, H:i:s');
?>
</small><br />
<div style="font-size:22px; font-weight:bold;" align="center">REKAP DETAIL PENJUALA ITEM (<?php
echo showDate($startdate);
?>
s/d <?php
echo showDate($enddate);
?>
)</div></td>
</tr>
<tr>
<td><table width="1100" border="0" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="37" align="center" bgcolor="#EEEEEE">No.</td>
<td width="79" align="center" bgcolor="#EEEEEE">Kode</td>
<td width="120" align="center" bgcolor="#EEEEEE">Kategori</td>
<td width="208" align="center" bgcolor="#EEEEEE">Nama Produk</td>
<td width="173" align="center" bgcolor="#EEEEEE">Pilihan</td>
<td width="89" align="center" bgcolor="#EEEEEE">Satuan</td>
<td width="126" align="center" bgcolor="#EEEEEE">Harga</td>
<td width="91" align="center" bgcolor="#EEEEEE">Diskon</td>
示例11: showDate
// checks if the url has the module switch
if (isset($_GET['module'])) {
if ($_GET['module'] != 'package' && $_GET['module'] != 'search' && $_GET['module'] != 'user') {
$setmodule = "overview";
// Default to overview
$title = "<i class='icons8-calendar'></i><span id='date'>" . ($date = showDate() . "</span>");
} else {
$setmodule = $_GET['module'];
// sets the module switch using the url
$module = $_GET['module'];
if ($module == 'search') {
$title = "Lookup any package";
}
}
} else {
if (!isset($_GET['module'])) {
$setmodule = "overview";
// Default to overview
$title = "<i class='icons8-calendar'></i><span id='date'>" . ($date = showDate() . "</span>");
}
}
if (isset($_GET['trackingnumber'])) {
$title = "Viewing issue " . $_GET['trackingnumber'];
}
if ($_SERVER['REQUEST_URI'] == "/packagehero/includes/allpackages.php") {
$title = "View a list of all current issues";
}
if ($_SERVER['REQUEST_URI'] == "/packagehero/includes/helpcenter.php") {
$title = "Package Hero Help Center";
}
示例12: showDate
if (isset($error)) {
?>
<div class="alert alert-info" role="alert"><?php
echo $error;
?>
</div>
<?php
} else {
?>
<?php
$date = $monday;
for ($i = 1; $i <= count($diary); $i++) {
?>
<h4 class="sidebar-header"><?php
echo $days[$i - 1] . " ";
echo showDate($date);
$date = date('Y-m-d', strtotime($date . ' + 1 day'));
?>
</h4>
<div class="panel panel-default">
<div class="table-responsive">
<table class="table table-striped table-hover table-bordered">
<thead>
<tr>
<th style="width: 20%;">Предмет</th>
<th style="width: 25%;">Оценки</th>
<th style="width: 15%;">Домашнее задание</th>
<th style="width: 25%;">Замечания</th>
<th style="width: 15%;">Статус урока</th>
</tr>
</thead>
示例13: number_format
echo $r['no_order'];
?>
</td>
<td valign="top"><a target="_blank" href="?p=edMember&id=<?php
echo $r['member_id'];
?>
"><?php
echo $r['member'];
?>
</a></td>
<td align="right" valign="top"><?php
echo number_format($r['total_order']);
?>
</td>
<td align="center" valign="top"><?php
echo showDate($r['tgl_order']);
?>
</td>
<td align="center" valign="top"><?php
echo $r['status'] == 2 ? 'COMPLETED' : ($r['status'] == 1 ? 'PENDING' : 'CANCELLED');
?>
</td>
<td align="center" valign="top">
<a class="bTools" href="?p=addOrder&id=<?php
echo $r['id'];
?>
" title="Edit">E</a>
<a class="bTools" href="?p=delOrder&id=<?php
echo $r['id'];
?>
" title="Delete" onclick="return confirm('Hapus record <?php
示例14: modelLink
echo modelLink($item->make, $item->model);
?>
" title="<?php
echo filterText($item->make);
?>
<?php
echo filterText($item->model);
?>
"><?php
echo filterText($item->make);
?>
<?php
echo filterText($item->model);
?>
</a> <span><?php
echo showDate($item->time);
?>
</span></p>
</div>
</div>
</div>
</li>
<!-- search results loop end //-->
<?php
$row += 1;
?>
<?php
}
?>
</ul>
<!-- search results end //-->
示例15: getValueForJs
?>
",kg:"<?php
echo getValueForJs($r['masina']['kg']['VALUE']);
?>
",putere:"<?php
echo getValueForJs($r['masina']['putere']['VALUE']);
?>
",anfab:"<?php
echo getValueForJs($r['masina']['anfab']['VALUE']);
?>
"
,valoarenou:"<?php
echo getValueForJs($r['masina']['valoarenou']['VALUE']);
?>
",ITP:"<?php
echo getValueForJs(showDate($r['masina']['itp']['VALUE'], getLT('dateformat')));
?>
",ROVI:"<?php
echo getValueForJs(showDate($r['masina']['rovi']['VALUE'], getLT('dateformat')));
?>
"
,textbutton:"Salveaza datele"
}</div>
<div class="workstep"><div class="biglabel">Vehicul</div></div>
<?php
include "extensions/info_vehicul.php";
}
return true;
}
}
}