How can I give a large number of class methods "almost" the same code - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T10:49:23Z http://stackoverflow.com/feeds/question/531796 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/531796/how-can-i-give-a-large-number-of-class-methods-almost-the-same-code 1 How can I give a large number of class methods "almost" the same code ahmed 2009-02-10T10:21:36Z 2009-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-&gt;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#531809 13 Answer by Rob for How can I give a large number of class methods "almost" the same code Rob 2009-02-10T10:25:12Z 2009-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#531846 0 Answer by Sam152 for How can I give a large number of class methods "almost" the same code Sam152 2009-02-10T11:00:53Z 2009-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#531854 3 Answer by Ciaran McNulty for How can I give a large number of class methods "almost" the same code Ciaran McNulty 2009-02-10T11:04:33Z 2009-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>