How can I give a large number of class methods "almost" the same code - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T10:49:23Zhttp://stackoverflow.com/feeds/question/531796http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/531796/how-can-i-give-a-large-number-of-class-methods-almost-the-same-code1How can I give a large number of class methods "almost" the same codeahmed2009-02-10T10:21:36Z2009-02-10T11:04:33Z
<p>hello
I have this PHP class</p>
<pre><code> class myclass{
function name($val){
echo "this is name method and the value is".$val;
}
function password($val){
echo "this is password method and the value is".$val;
}
}
</code></pre>
<p>and here is how to use it:</p>
<pre><code> $myclass= new myclass();
$myclass->name("aaa")//output: this is name method and the value is aaa
</code></pre>
<p>it works fine because I just have 2 methods "name" and "password"
what If I have a huge number of methods, it would not be easy to add those methods to my class and write the same code for each method, I want to change my class to let each method give the same output apart from the method name? and I don't want to write all details for all methods because they are almost similar,is this possible in PHP?
I wish I was clear :)</p>
http://stackoverflow.com/questions/531796/how-can-i-give-a-large-number-of-class-methods-almost-the-same-code/531809#53180913Answer by Rob for How can I give a large number of class methods "almost" the same codeRob2009-02-10T10:25:12Z2009-02-10T10:25:12Z<p>You could override the <a href="http://www.php.net/manual/en/language.oop5.overloading.php#language.oop5.overloading.methods" rel="nofollow"><code>__call()</code></a> method for the class, which is a "magic method" that will be used when a non-existent method is called.</p>
http://stackoverflow.com/questions/531796/how-can-i-give-a-large-number-of-class-methods-almost-the-same-code/531846#5318460Answer by Sam152 for How can I give a large number of class methods "almost" the same codeSam1522009-02-10T11:00:53Z2009-02-10T11:00:53Z<p>Call a function within your methods and have your function call the magic constant __FUNCTION__ to find out the method name.</p>
http://stackoverflow.com/questions/531796/how-can-i-give-a-large-number-of-class-methods-almost-the-same-code/531854#5318543Answer by Ciaran McNulty for How can I give a large number of class methods "almost" the same codeCiaran McNulty2009-02-10T11:04:33Z2009-02-10T11:04:33Z<p>Use the __call magic method, like the following:</p>
<pre><code>class myclass
{
function __call($func, $args)
{
echo 'this is ', $func, 'method and the value is', join(', ', $args);
}
}
</code></pre>
<p>This function will get called for any function that doesn't have an explicit function definition.</p>
<p>Note that $args is an array containing all the parameters the function's called with.</p>