I can see why this ```php namespace App; if (\is_string($s)) ``` is supposed to work faster then this ```php namespace App; if (is_string($s)) ``` but I was wondering if, without changing your code much, one could import a function from global namespace like so ```php namespace App; use function is_string; if (is_string($s)) ``` ...and still benefit from improved performance?
I can see why this
is supposed to work faster then this
but I was wondering if, without changing your code much, one could import a function from global namespace like so
...and still benefit from improved performance?