Código PHP:
public function obtenerItems(){
$arrayItems=array();
$link= new Conexion();
$link->open();
$resultado = $link->query("SELECT * from items");
while ($row = mysql_fetch_array($resultado)){
$item = new Item ($row["nombre"],$row["valor"]);
$arrayItems[]=$item;
shuffle ($arrayItems);
$valor1 = $arrayItems[0];
shuffle ($arrayItems);
$valor2 = $arrayItems[0];
shuffle ($arrayItems);
$valor3 = $arrayItems[0];
$arrayValores = array ($valor1, $valor2, $valor3);
}
$link->close();
return $arrayValores;
}