Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,895 questions

51,826 answers

573 users

How to move the first element of multi dimensional array to end, and push the element up in PHP

1 Answer

0 votes
$array= array(
 array("2017-15-07",3.14,5000000,-87,100)
);

array_push($array[0], array_shift($array[0]));

echo "<pre>"; 
print_r($array);
echo "</pre>";

/*
run: 

Array
(
    [0] => Array
        (
            [0] => 3.14
            [1] => 5000000
            [2] => -87
            [3] => 100
            [4] => 2017-15-07
        )
)

*/

 



answered Jul 15, 2017 by avibootz
...