how check method exist |
[eluser]minhbu[/eluser]
No i have a controller demo class Demo extends Controller{ function demo() { parent::Controller(); } function index() { $id=$this->uri->segment(3); if(method_exists($this,$id)) $this->$id; else echo "Your method haven`t got"; } function a() { echo "Hello"; } } I have URI http://localhost/demo/index/a but i have a error A PHP Error was encountered Severity: Notice Message: Undefined property: Demo::$id Filename: controllers/demo.php Line Number: 20 |
Messages In This Thread |
how check method exist - by El Forum - 10-23-2008, 07:50 PM
how check method exist - by El Forum - 10-23-2008, 08:11 PM
how check method exist - by El Forum - 10-23-2008, 08:33 PM
how check method exist - by El Forum - 10-24-2008, 12:11 AM
how check method exist - by El Forum - 10-24-2008, 02:59 AM
how check method exist - by El Forum - 10-24-2008, 03:10 AM
how check method exist - by El Forum - 10-24-2008, 03:39 AM
how check method exist - by El Forum - 10-24-2008, 03:40 AM
how check method exist - by El Forum - 10-24-2008, 03:51 AM
how check method exist - by El Forum - 10-24-2008, 03:58 AM
how check method exist - by El Forum - 10-24-2008, 08:01 PM
|