I find php's Object Orientation somewhat verbose and unsavory. I love working with the cleanliness of functions, and my ideal is to code in php from as close to Clojure's excellent approach to Functional Programming as can be done & still make sense in php.
As I move towards F.P., I've found that it's hard to keep a group of related functions cohesive. In OO, that would be done with shared state and methods that exist as part of the same class. Is there some aspect of F.P. that can be used to help with that?