shuffle

Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Shuffle an array
<?php shuffle(array &$array): true
<?php     public function mixIpsIntoConnectQueue(array $ips)

    {

        \shuffle($ips);

        $this->ipsCount += \count($ips);

        $connectQueueStash = $this->connectQueue;

        $this->connectQueue = array();
<?php         $keys = array_keys($attributes);

        shuffle($keys);




        $invoiceHeader->setAttributes(array_merge(array_flip($keys), $attributes));