Siempre he usado objetos, pero no introduzco los datos directamente desde la consulta. Usando las funciones de 'establecer', creo el diseño y así evito problemas con las uniones y las colisiones de nombres. En el caso de su ejemplo 'full_name', probablemente usaría 'as' para obtener las partes del nombre, establecería cada una en el objeto y ofrecería 'get_full_name' como miembro fn.
Si te sientes ambicioso, puedes agregar todo tipo de cosas a 'get_age'. Establezca la fecha de nacimiento una vez y enloquezca desde allí.
EDITAR:Hay varias formas de hacer objetos a partir de sus datos. Puede predefinir la clase y crear objetos o puede crearlos 'sobre la marcha'.
--> Algunos ejemplos v simplificados -- si esto no es suficiente, puedo agregar más.
sobre la marcha:
$conn = DBConnection::_getSubjectsDB();
$query = "select * from studies where Status = 1";
$st = $conn->prepare( $query );
$st->execute();
$rows = $st->fetchAll();
foreach ( $rows as $row )
{
$study = (object)array();
$study->StudyId = $row[ 'StudyId' ];
$study->Name = $row[ 'StudyName' ];
$study->Investigator = $row[ 'Investigator' ];
$study->StartDate = $row[ 'StartDate' ];
$study->EndDate = $row[ 'EndDate' ];
$study->IRB = $row[ 'IRB' ];
array_push( $ret, $study );
}
predefinido:
/** Single location info
*/
class Location
{
/** Name
* @var string
*/
public $Name;
/** Address
* @var string
*/
public $Address;
/** City
* @var string
*/
public $City;
/** State
* @var string
*/
public $State;
/** Zip
* @var string
*/
public $Zip;
/** getMailing
* Get a 'mailing label' style output
*/
function getMailing()
{
return $Name . "\n" . $Address . "\n" . $City . "," . $State . " " . $Zip;
}
}
uso:
$conn = DBConnection::_getLocationsDB();
$query = "select * from Locations where Status = 1";
$st = $conn->prepare( $query );
$st->execute();
$rows = $st->fetchAll();
foreach ( $rows as $row )
{
$location = new Location();
$location->Name= $row[ 'Name' ];
$location->Address = $row[ 'Address ' ];
$location->City = $row[ 'City' ];
$location->State = $row[ 'State ' ];
$location->Zip = $row[ 'Zip ' ];
array_push( $ret, $location );
}
Luego, más tarde, puede recorrer $ret y generar etiquetas de correo:
foreach( $ret as $location )
{
echo $location->getMailing();
}