3

In PHP, I can access a function in global namespace from another namespace using myFunc(), instead of \myFunc(). PHP Will automatically fallback to the global namespace, if myFunc cannot be resolved in the current namespace.

Which is the recommended way? \myFunc() or myFunc()?

1 Answer 1

2

Second option is better if you want to implement some kind of polymorphism or to completely change function's logic. Something like this.

namespace Nkamm;

// like a PHP6
function strstr($needle, $haystack)
{
    return \strstr($haystack, $needle);
}

var_dump(strstr('t', 'Long test'));

Result:

string(4) "test"

But I would not like to do such "overloads" because that will cause the mess (until they are strictly documented in project). Hence there is no sense to overwrite existing functions.

Summing up: keep your functions in your namespace, use global functions without any backslashes.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.