本文整理汇总了PHP中Check::dateBR方法的典型用法代码示例。如果您正苦于以下问题:PHP Check::dateBR方法的具体用法?PHP Check::dateBR怎么用?PHP Check::dateBR使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Check
的用法示例。
在下文中一共展示了Check::dateBR方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
</a></li>
<li class="active">Chamada: <?php
echo $turma['turma_nome'];
?>
</li>
</ol>
</header>
<h1 class="text-primary h2 bold titleMobileMarginTop">Visualizar Chamada: <?php
echo $turma['turma_nome'];
?>
</h1>
<?php
if (!empty($alunos) and $turma['turma_status'] == '1' and $curso['curso_status'] == '1' and $readChamadaAtualizada->getResult()) {
?>
<h2 class="text-danger h4"><?php
echo Check::dateBR('full', $readAula->getResult()[0]['data']);
?>
</h2>
<div class="col-lg-12 marginTop">
<table class="table table-bordered table-condensed">
<thead>
<tr class="bold">
<td>Nome</td>
<td>Chamada</td>
</tr>
</thead>
<tbody class="form-group">
<?php
foreach ($readAlunos->getResult() as $chamada) {
foreach ($readChamadaAtualizada->getResult() as $atual) {
if ($chamada['educando_id'] == $atual['educando_id']) {
示例2: foreach
</a></li>
<li class="active">Chamada: <?php
echo $turma['turma_nome'];
?>
</li>
</ol>
</header>
<h1 class="text-primary h2 bold titleMobileMarginTop">Atualizar Chamada: <?php
echo $turma['turma_nome'];
?>
</h1>
<?php
if (!empty($alunos) and $turma['turma_data_inicio'] <= date('Y-m-d') and $turma['turma_data_termino'] >= date('Y-m-d') and strpos($turma['turma_semana'], Check::dateBR('semana')) !== false and $turma['turma_status'] == '1' and $curso['curso_status'] == '1') {
?>
<h2 class="text-danger h4"><?php
echo Check::dateBR('full');
?>
</h2>
<div class="col-lg-12 marginTop">
<form id="ChamadaUpdate" name="ChamadaUpdate" method="post" action="">
<table>
<tbody class="form-group">
<?php
foreach ($readAlunos->getResult() as $chamada) {
foreach ($readChamadaAtualizada->getResult() as $atual) {
if ($chamada['educando_id'] == $atual['educando_id']) {
$buffer[] = $atual['educando_id'];
?>
<tr>
<td>
<label><?php