Files
php_8/phpdocs/docblock.php
2022-06-20 08:55:45 +03:00

20 lines
614 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Выводит дамп массива или объекта.
*
* Подробное описание функции: может занимать несколько строк.
* В данном случае функция, принимая в качестве единственного
* параметра $arr массив или объект, выводит его подробную структуру.
* dump(['Hello', 'world', '!']);
*
* @param array|object $arr
*
* @return void
*/
function dump(array|object $arr) : void
{
echo '<pre>';
print_r($arr);
echo '</pre>';
}