View Single Post
Old 11-28-2009, 03:19 AM   #6 (permalink)
ETbyrne
how quixotic are you?
 
ETbyrne's Avatar
 
Join Date: Dec 2007
Location: Lapeer, MI
Posts: 445
Thanks: 37
ETbyrne is on a distinguished road
Default

PHP Code:
class myClass
{
    public function 
myFunction()
    {
        
$arguments func_get_args();
    }

You can then use any number of arguments on that function.

PHP Code:
$obj = new myClass();
$obj->myFunction();
$obj->myFunction(1,'two');
$obj->myFunction(3,4,5,'six'); 
__________________
Dingo Web Systems > http://www.dingocode.com
My Website > http://www.evanbot.com
ETbyrne is offline  
Reply With Quote