Home  >  Article  >  Backend Development  >  How to install the printing plug-in in php symfony/var-dumper

How to install the printing plug-in in php symfony/var-dumper

一个新手
一个新手Original
2017-10-02 19:43:032233browse


$records = array(
            array(
                'id'         => 2135,
                'first_name' => 'John',
                'last_name'  => 'Doe',
            ),
            array(
                'id'         => 3245,
                'first_name' => 'Sally',
                'last_name'  => 'Smith',
            ),
            array(
                'id'         => 5342,
                'first_name' => 'Jane',
                'last_name'  => 'Jones',
            ),
            array(
                'id'         => 5623,
                'first_name' => 'Peter',
                'last_name'  => 'Doe',
            )
        );

dump($records);


The above is the detailed content of How to install the printing plug-in in php symfony/var-dumper. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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