Q. How do I print array with PHP?
A. You can easily print an array with php using print_r() function. It orints human-readable information about a variable including array.
<?php $distro = array ('r' => 'RedHat', 'd' => 'Debian', 'c' => 'CentOS '); print_r ($distro); ?>
Sample Output:
Array
(
[r] => RedHat
[d] => Debian
[c] => CentOS
)
Want to read Linux tips and tricks, but don't have time to check our blog everyday? Subscribe to our daily email newsletter to make sure you don't miss a single tip/tricks. Subscribe to our weekly newsletter here!


{ 0 comments… add one now }