<?php namespace A { is_array([]); }; namespace B { \is_array([]); }; namespace C { use function is_array; is_array([]); }; namespace D { use function is_array as is_really_array; is_really_array([]); };
You have javascript disabled. You will not be able to edit any code.