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


PHP Interfaz::footer方法代码示例

本文整理汇总了PHP中Interfaz::footer方法的典型用法代码示例。如果您正苦于以下问题:PHP Interfaz::footer方法的具体用法?PHP Interfaz::footer怎么用?PHP Interfaz::footer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Interfaz的用法示例。


在下文中一共展示了Interfaz::footer方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

    $suma = array("anticipo" => 0, "co_total" => 0, "co_aprobado" => 0, "remanente" => 0);
    foreach ($resultado as $fila) {
        $aux .= "<tr>";
        foreach ($fila as $nombre => $dato) {
            $xls .= "{$dato}\t";
            $aux .= "<td style=\"font-size: 9px;\" align='right'>{$dato}</td>";
            foreach ($suma as $valores => $valor) {
                if ($valores == $nombre) {
                    $suma[$valores] = number_format($valor + $dato, 2, ".", "");
                }
            }
        }
        $aux .= "</tr>";
    }
    $aux .= "<tr>";
    $aux .= "<td colspan='4'>&nbsp;</td>";
    $aux .= "<td style=\"font-size: 9px;\" align='right'><strong>{$suma['anticipo']}</strong></td>";
    $aux .= "<td style=\"font-size: 9px;\" align='right'>&nbsp;</td>";
    $aux .= "<td style=\"font-size: 9px;\" align='right'><strong>{$suma['co_total']}</strong></td>";
    $aux .= "<td style=\"font-size: 9px;\" align='right'><strong>{$suma['co_aprobado']}</strong></td>";
    $aux .= "<td style=\"font-size: 9px;\" align='right'><strong>{$suma['remanente']}</strong></td>";
    $aux .= "</tr>";
    $aux .= "</table>";
    $aux .= "</body>";
    $aux .= "</html>";
    echo $aux;
}
$I->footer();
?>
</html>
开发者ID:hackdracko,项目名称:belcorp,代码行数:30,代码来源:saldos.php


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