View Single Post
Old 08-12-2009, 09:00 AM   #6 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default

Solved it.
PHP Code:
public function __call($function$params null)
    {
        
        
$args = ($params == null) ? '' split(', '$params[0]);
        if(
is_object($this->DB_Helper))
        {
            
            if(
$args != '')
            {
            
                return 
call_user_func_array(array($this->DB_Helper$function), $args);
                
            }
            
            return 
call_user_func(array($this->DB_Helper$function));
            
        }
        
        die(
'DB_Helper is not loaded. Check out database config file.');
        return 
false;
        
    } 
__________________
Tanax is offline  
Reply With Quote