PHP Print array

by Vivek Gite on April 13, 2008 · 0 comments

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
)

Featured Articles:

Share this with other sys admins!
Facebook it - Tweet it - Print it -

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 10 + 10 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.




Previous post:

Next post: