Quick Writer
Welcome to Questions & Answers on Math, Physics, Chemistry, History and more, where you can ask questions and receive answers from other members of the community.

How to echo array?

How to echo array?

<?php
$array = array(
    "foo" => "bar",
    "bar" => "foo",
);

?>
related to an answer for: How to create an array with php
asked Jul 7, 2017 in PHP by Bb

1 Answer

 
Best answer
print_r($array);
answered Jul 7, 2017 by Oneil
...