PHP Print array

by Vivek Gite [Last updated: August 25, 2008]

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 }

Leave a Comment

You can use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Tagged as: , , , , ,

Previous post: Ubuntu Linux Configure DNS Name Server IP Address ( DNS Client )

Next post: How To Ping IPv6 Address Using Windows Vista / Xp or Windows Server 2008 / 2003 Server