当前位置: 首页>>代码示例>>PHP>>正文


PHP Check::TranslateMonth方法代码示例

本文整理汇总了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">
开发者ID:claytongf,项目名称:patr,代码行数:31,代码来源:imagem.php

示例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']);
            ?>
开发者ID:claytongf,项目名称:patr,代码行数:31,代码来源:gerarchamada.php

示例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>.';
 }
开发者ID:claytongf,项目名称:patr,代码行数:4,代码来源:AdminDocs.class.php

示例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>';
 }
开发者ID:claytongf,项目名称:patr,代码行数:4,代码来源:AdminReportEventos.class.php


注:本文中的Check::TranslateMonth方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。