Borys Pawluczuk

Borys Pawluczuk programista
web/mvc/rest

Temat: ZF2 pdo

Jak uzyskać taki efekt, jakąś funkcja pdo?:
Chodzi o zwrócenie tablicy lub obiektu z jednym wierszem.

public function getUser($user_id) {

$result = array();

$sql = new Sql($this->db);
$select = $sql->select('users');
$select->where(array('user_id' => $user_id));

$statement = $sql->prepareStatementForSqlObject($select);
$result = $statement->execute();

foreach ($result as $row) {
$result = $row;
}

return $result;
}
Jarosław Grzelak

Jarosław Grzelak Software Engineer,
StepStone Services
Sp. z o.o.

Temat: ZF2 pdo

$result = $statement->execute();
return $result->current();

Zwróci obiekt lub NULL.Ten post został edytowany przez Autora dnia 09.06.13 o godzinie 20:54

Następna dyskusja:

[ZF] ZF 1-0-1 bez PDO - czy...




Wyślij zaproszenie do