Advertising
- Ox41464b
- Wednesday, August 9th, 2006 at 9:09:27am UTC
- <?php
- class Dog
- {
- public function Bark() {}
- }
- class Monkey
- {
- public function Climb() {}
- }
- class Fish
- {
- public function Swim() {}
- }
- class ObjectMerger
- {
- public function __call($method, $argv)
- {
- foreach ($this->ObjectContainer as $Object)
- {
- {
- return true;
- }
- }
- echo "Unknown method $method\n";
- return false;
- }
- public function addObject($Object)
- {
- $this->ObjectContainer[]=$Object;
- }
- }
- $newSpecies=new ObjectMerger;
- $newSpecies->addObject(new Dog);
- $newSpecies->Bark();
- $newSpecies->addObject(new Monkey);
- $newSpecies->Climb();
- $newSpecies->addObject(new Fish);
- $newSpecies->Swim();
- $newSpecies->UnknownCall();
- /*
- Output:
- C:\>php -f ObjectMerger.php
- Calling Bark
- Calling Climb
- Calling Swim
- Unknown method UnknownCall
- */
- ?>
advertising
Update the Post
Either update this post and resubmit it with changes, or make a new post.
You may also comment on this post.
Please note that information posted here will not expire by default. If you do not want it to expire, please set the expiry time above. If it is set to expire, web search engines will not be allowed to index it prior to it expiring. Items that are not marked to expire will be indexable by search engines. Be careful with your passwords. All illegal activities will be reported and any information will be handed over to the authorities, so be good.