Switch to full style
:read: Start PHP with us. Includes topics to help you in php
Post a reply

Define class helper class to check the method existance

Mon Oct 27, 2008 12:04 am

Code:

<?php
class A {
    function
getA( ) {
        return array(
"A", "B" );
    }
}

class
Helper {
    
private $classA;

    function
__construct( A $classA ) {
        
$this->classA = $classA;
    }

    function
__call( $method, $args ) {
        if (
method_exists( $this->classA, $method ) ) {
            return
$this->classA->$method( );
        }
    }
}

$tool= new Helper( new A() );
print_r( $tool->getA() );
?>




Post a reply
  Related Posts  to : Define class helper class to check the method existance
 define a Class with a Method     -  
 Define class inside another class C++     -  
 Define your own exception class     -  
 define final class     -  
 how to Define abstract class in php     -  
 Define getter and setter in php class     -  
 Define Enum inside a class     -  
 Define boolean Class properties     -  
 toString method in class php     -  
 invoke class method dynamically in php     -  

Topic Tags

PHP OOP