How to print array in Php

(*-*)浩
Release: 2023-02-25 19:28:02
Original
3758 people have browsed it

php has two functions for printing arrays: print_r() function and var_dump() function

How to print array in Php

print_r() function

Example: (Recommended learning:PHP video tutorial)

Copy after login

Run this example output:

Array ( [0] => 1 [1] => 2 [2] => 3 )
Copy after login

var_dump() function

Example:

Copy after login

Run this example output:

array(3) { [0]=> int(1) [1]=> int(2) [2]=> int(3) }
Copy after login

The var_dump() function is used the same as the print_r() function. However, the var_dump() function is more powerful than print_r(). It can print multiple variables at the same time and give the type information of the variables.

The above is the detailed content of How to print array in Php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!