本文整理汇总了PHP中date::TraerFecha方法的典型用法代码示例。如果您正苦于以下问题:PHP date::TraerFecha方法的具体用法?PHP date::TraerFecha怎么用?PHP date::TraerFecha使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类date
的用法示例。
在下文中一共展示了date::TraerFecha方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
require_once "class/persona.php";
require_once "class/hora.php";
$arrayReserva = reservar::TraerTodasLasReservas();
echo "<h2> Bienvenido: " . $_SESSION['registrado'] . "</h2>";
?>
<table class="table" style=" background-color: beige;">
<thead>
<tr>
<th>Editar</th><th>Borrar</th><th>Paciente</th><th>Dni</th><th>Medico</th>
</tr>
</thead>
<tbody>
<?php
foreach ($arrayReserva as $cd) {
$persona = persona::TraerUnaPersonaPorID($cd->persona);
$turno = turno::TraerUnTurno($cd->turno);
$medico = medico::TraerUnMedico($turno->idMedico);
$datosMedico = persona::TraerUnaPersonaPorID($medico->idPersona);
$fecha = date::TraerFecha($turno->idDate);
$hora = hora::TraerUnaHoraPorID($turno->idHora);
echo "<tr>\n\t\t\t<td><a onclick='BorrarReserva({$cd->id})' class='btn btn-danger'> <span class='glyphicon glyphicon-trash'> </span> Borrar</a></td>\n\t\t\t<td>{$persona->nombre} </br> {$persona->apellido}</td>\n\t\t\t<td>{$persona->dni}</td>\n\t\t\t<td>{$datosMedico->nombre} </br> {$datosMedico->apellido}</td>\n\t\t\t<td>fecha:{$fecha->fecha} </br> {$hora->descripcion}</td>\n\t\t</tr> ";
}
?>
</tbody>
</table>
<?php
} else {
echo "<h4 class='widgettitle'>No estas registrado</h4>";
}