vote up 0 vote down star
2

without telling me to buy a book, would anyone be interested in answering the following question?

if i am in a namespace with a class named foo. and i wanted to build another class called bar. how would i proceed to make foo, aware of bar and vice versa? at what cost? keep in mind that there could potentially be a whole microcosm of useful classes

flag
foo class aware of bar class or an instance of foo aware of an instance of bar? – Stefano Borini Nov 4 at 8:17
1  
Isn't this question about PHP namespaces, rather than about OOP? – xtofl Nov 4 at 8:19
stefano: both =) xtofl: as well – Mike G Nov 8 at 4:28

3 Answers

vote up 4 vote down

No book, but see the namespace documentation

If your classes are in different namespaces:

<?php
namespace MyProject;

class Bar { /* ... */ }

namespace AnotherProject;

class Foo{ /* ... */ 
   function test() {
      $x = new \MyProject\Bar();
   }
}
?>

If the classes are in the same namespace, it's like no namespace at all.

link|flag
11  
wait... php uses backslashes for namespacing ?? oh my... – Stefano Borini Nov 4 at 8:19
3  
that is the cruel truth – tuergeist Nov 4 at 8:20
1  
isn't it ugly??? lol – Manzoor Ahmed Nov 4 at 8:23
2  
The cruel and ugly truth :/ – Justin Johnson Nov 4 at 8:23
1  
No need to say RTFM. – Filip Ekberg Nov 4 at 8:35
show 4 more comments
vote up 2 vote down

About the namespace question, I refer to tuergeist's answer. The OOP aspect, I can only tell that this proposed mutual awareness of Foo and Bar has a slight smell about it. You would rather work with interfaces and let implementation classes have references to the interface. It might be this is called 'dependency inversion'.

interface IFoo {
    function someFooMethod();
}

interface IBar {
    function someBarMethod();
}

class FooImpl1 {
    IBar $myBar;
    function someImpl1SpecificMethod(){
       $this->myBar->someBarMethod();
    }

    function someFooMethod() { // implementation of IFoo interface
       return "foostuff";
    }
}
link|flag
vote up 0 vote down

You can also use other classes from other namespaces with the using statement. The following example implements a couple core class into your namespace:

namspace TEST
{
    using \ArrayObject, \ArrayIterator; // can now use by calling either without the slash
    class Foo
    {
        function __construct( ArrayObject $options ) // notice no slash
        {
            //do stuff
        }
    }
}
link|flag

Your Answer

Get an OpenID
or

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