本文整理汇总了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'> </td>";
$aux .= "<td style=\"font-size: 9px;\" align='right'><strong>{$suma['anticipo']}</strong></td>";
$aux .= "<td style=\"font-size: 9px;\" align='right'> </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>