I have a few general use functions that do not really make sense in any class as static methods. I would like to encapsulate them under a namespace so there are no conflicts with functions defined in the global scope. For my namespaced classes, I follow the widely-adopted pattern where a class such as \My\Namespaced\MyClass exists in My/Namespaced/MyClass.php on the include path.

Is there a best practice for where namespaced functions should be placed? Right now I'm putting them in "functions.php" within the directory holding classes under the same namespace. For example \My\Namespaced\myFunction exists in My/Namespaced/functions.php.

Also, is there any way to autoload these functions in the same way that classes are autoloaded?

link|improve this question

73% accept rate
feedback

3 Answers

up vote 5 down vote accepted

Also, is there any way to autoload these functions in the same way that classes are autoloaded?

Not for global functions, but if ...

Is there a best practice for where namespaced functions should be placed?

I would consider using objects instead a "best practice", however we all know that it's not totally true.

There is no autoloading for global functions, you can encapsulate functions into classes as static functions and then the autoloader will kick into action. So that might be a suggestion, however you should be clear about the implications those static functions have for your overall design.

So to say: If you're okay with global functions, then you might be okay with global static class functions. They will break if you change a class's name (like with any global function name), you have however created something that can autoload and is compatible with your file naming scheme.

Edit: When I write global, I mean the fully qualified name of a function, that's the one starting with \. See Name resolution rules Docs.

link|improve this answer
None of this is global, it's using PHP 5.3 namespaces. – igorw Aug 29 '11 at 19:01
@igorw: What do you mean? What is not global? I just don't get it, feel free to elaborate. – hakre Aug 29 '11 at 19:26
maybe I'm not getting what you mean by global. All I'm saying is that the functions in question are not in the global namespace. – igorw Aug 29 '11 at 19:31
Ah okay. I mean fully qualified function names, those are always global. They start with `\`. Anyway global functions are those that are globally accessible, they have a unique name in the global namespace, even if you define them not fully qualified. Edited the answer to make that more visible. – hakre Aug 29 '11 at 19:41
I'm not a huge fan of attaching a function to a class that does not carry out behavior relevant to the class. It also adds cruft, which I'm also not a fan of. I think with what PHP provides, the solution will come down to a matter of style, as you allude to in your post. – rr. Aug 29 '11 at 20:47
show 2 more comments
feedback

Unfortunately there is no autoloading for functions (because the PHP devs decided so...), thus you must think about, how you get the function files include. For example you can use a functional for that (like importFunction($namespace); It would just map the namespace against the filename and include the file), or you can include every file, that contains functions at once (at startup or such).

link|improve this answer
feedback

IMHO, only utility function should be outside classes ( like my_array_multi_sort() or similar ) and the file containing such functions should be included by default from index/bootstrap file and not "autolaoded", because they expand toolset of language. Everything else should be inside classes as non-static methods.

It would help if you provided some examples of methods you think have no place in your objects.

link|improve this answer
You're right, from an OO purist perspective, but I do believe there are some circumstances where plain old functions make your code filled less with cruft. I suppose you could explicitly include your files including utility functions in your bootstrap code, but it's more cruft and it hurts modularization. What if I have a library under the \LibraryA namespace that requires functions from \LibraryB? Either \LibraryA needs to explicitly include the file or you need to be aware of the dependency in your bootstrap. This is a reason autoloading for classes exist I thought. – rr. Aug 29 '11 at 19:09
@rr : Do you have any examples? What functions would your LibraryA and LibraryB contain? Because you are making no sense. – tereško Aug 29 '11 at 19:16
Sure, in my code, I allow callables to be passed around in two forms, anonymous functions and objects implementing a "Callable" interface. Because PHP does not allow for callable objects, I have a utility function that will wrap objects implementing "Callable" in an anonymous function so that it can be used the same as an anonymous function. – rr. Aug 29 '11 at 19:23
1  
@rr: Wrong. Implement __invoke() and the object is callable. However, I share your opinion, that functions are quite useful and faking them with OOP feels wrong. – KingCrunch Aug 29 '11 at 20:11
@KingCrunch: That is nifty, I was not aware of that in 5.3, thanks for the heads up. – rr. Aug 29 '11 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.