本文整理汇总了PHP中Check::TranslateMonth方法的典型用法代码示例。如果您正苦于以下问题:PHP Check::TranslateMonth方法的具体用法?PHP Check::TranslateMonth怎么用?PHP Check::TranslateMonth使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Check
的用法示例。
在下文中一共展示了Check::TranslateMonth方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: date
?>
<?php
echo $documento['p3'];
?>
<?php
echo $documento['p4'];
?>
<?php
echo $documento['p5'];
?>
</div>
<p class="text-right">São José dos Pinhais, <ins><?php
echo date('d');
?>
</ins> de <ins><?php
echo Check::TranslateMonth();
?>
</ins> de <ins><?php
echo date('Y');
?>
</ins></p>
<div class="col-lg-6 col-p-6 text-center">
<p>____________________________________</p>
<p>Assinatura do Outorgante (Menor)</p>
</div>
<div class="col-lg-6 col-p-6 text-center">
<p>____________________________________</p>
<p>Assinatura do Pai/Mãe ou Responsável Legal</p>
</div>
<p><strong>Testemunhas:</strong></p>
<div class="col-lg-6 col-p-6 text-center">
示例2: strtoupper
echo $curso['curso_nome'];
?>
</h2>
<h2 class="h5 text-primary ph6"><strong>Curso/Oficina: </strong> <?php
echo $curso['curso_tipo'];
?>
</h2>
<h2 class="h5 text-primary ph6"><strong>Turma: </strong> <?php
echo $dataTurma['turma_nome'];
?>
- <strong><?php
echo $dataTurma['turma_periodo'];
?>
</strong></h2>
<h3 class="h5 text-primary ph6"><strong>Mês:</strong> <?php
echo strtoupper(Check::TranslateMonth());
?>
<strong>Ano:</strong> <?php
echo date('Y');
?>
</h3>
<h3 class="h5 text-primary ph6"><strong>Educador(a):</strong> <?php
echo $educador['user_name'];
?>
<?php
echo $educador['user_lastname'];
?>
</h3>
<h3 class="h5 text-primary ph6"><strong>Dias da Semana:</strong> <?php
echo str_replace(array('0, ', ', 0'), '', $dataTurma['turma_semana']);
?>
示例3: createDocTermo
private function createDocTermo()
{
$this->Data['data'] = 'São José dos Pinhais, <ins>' . date('d') . '</ins> de <ins>' . Check::TranslateMonth() . '</ins> de <ins>' . date('Y') . '</ins>.';
}
示例4: drawFooter
public function drawFooter()
{
return '<div class="printOnly">' . '<p>São José dos Pinhais, ' . date('d') . ' de ' . Check::TranslateMonth() . ' de ' . date('Y') . '</p>' . '<div class="col-lg-6 col-p-6 text-center marginAssinatura"' . '<p>________________________________________</p>' . '<p>Assinatura do(a) Educador(a) Responsável</p>' . '</div>' . '<div class="col-lg-6 col-p-6 text-center marginAssinatura"' . '<p>________________________________________</p>' . '<p>Visto da Coordenação Pedagógica</p>' . '</div>' . '</div>';
}