muchas gracias, he armado esto pero no funciona:
Código PHP:
Ver originalprotected function all_results($result) {
while ($row = $result->fetch_array(MYSQLI_ASSOC)) {
yield $row;
}
}
protected function _bindResultados(mysqli_stmt $stmt)
{
$result = $stmt->get_result();
foreach (all_results($result) as $row) {
$resultados[] = $row;
}
return $resultados;
}
me arroja:
Cita: Parse error: syntax error, unexpected '$row' (T_VARIABLE)
probe a usar uno de los ejemplos del manual y tiran el mismo error, hace falta tener algo habilitado en el server para poder usarlos?