0 votes
3.0k views
in General by
Can someone explain me what and why this "1" is displayed at the end of print_r function?

        echo '<pre>'
        echo print_r($validation->getErrorFields());
        echo '</pre>'

1 Answer

0 votes
by
Remove the echo before print_r

the print_r is supposed to return true/false which is displayed as 1 with the echo.

So you only need the following.

        echo '<pre>'
        print_r($validation->getErrorFields());
        echo '</pre>'

Related questions

0 votes
1 answer 603 views
asked Oct 29, 2021 in General by anonymous
0 votes
1 answer 760 views
0 votes
1 answer 1.4k views
0 votes
0 answers 418 views
asked Oct 4, 2021 in General by anonymous
0 votes
0 answers 3.6k views
...