Answers for "output all values from array php function"

PHP
2

print array items in php

<?php $data = array('a'=>'apple','b'=>'banana','c'=>'orange');?>
<pre><?php print_r($data); ?></pre>
Posted by: Guest on July-15-2021

Code answers related to "output all values from array php function"

Browse Popular Code Answers by Language