mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-13 04:53:26 +00:00
7 lines
99 B
PHP
7 lines
99 B
PHP
<?php
|
|
|
|
function is_loopable($item)
|
|
{
|
|
return is_array($item) || $item instanceof Traversable;
|
|
}
|