Comment trier un objet en PHP? J'ai essayé shuffle()
mais attend un tableau:Objets Shuffle en PHP
Warning: shuffle() expects parameter 1 to be array,
object given in /var/www/index.php on line 366
Warning: Invalid argument supplied for foreach() in /var/www/index.php on line 334
Voici mon code:
public function updateStatusWithoutDB() {
$this->updateProfileColors();
$items = $this->getItems();
$items = shuffle($items);
if($this->updateStatusArray($items))
return true;
return false;
}
A var_dump($items);
renvoie cette:
["180"]=>
object(stdClass)#203 (1) {
["status"]=>
string(130) "I was checking Microsoft's Visual Studio page just no…"
}
Que voulez-vous dire par "Trier un objet"? Le concept n'a aucun sens. –
Pouvez-vous poster votre code? –
hmm .. comment puis-je expliquer, un conteneur d'objet doit être trié au hasard – streetparade