Excuse my newbishness. While working on an ASP.Net based website, I remember seeing some methods in which could accept a different number of arguments. Specifically, they would do different things, depending on the number of parameters passed to them.
For example:
Email.sendEmail(address,subject,body);
would do something different to:
Email.sendEmail(address,bccaddresses,subject,body);
Is it possible for methods in PHP to do something similar? What is this thing called? Or have I just totally misremembered something?