diff options
author | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-01-27 13:08:38 +0100 |
---|---|---|
committer | Phil Sturgeon <email@philsturgeon.co.uk> | 2011-01-27 13:08:38 +0100 |
commit | f00191c02985fba1e360a22ad914c547696df1b2 (patch) | |
tree | 76c2d963be0b7c70705369ca4a9f82946df8bba8 /user_guide/general | |
parent | 5dd84d04294b622f8b85f8aaac54d8329a2ae173 (diff) | |
parent | 3bb336cf1c55584bb92ed32563a9543ec7f01574 (diff) |
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
Diffstat (limited to 'user_guide/general')
-rw-r--r-- | user_guide/general/controllers.html | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/user_guide/general/controllers.html b/user_guide/general/controllers.html index 1d9cd0328..3a85ca38a 100644 --- a/user_guide/general/controllers.html +++ b/user_guide/general/controllers.html @@ -243,9 +243,17 @@ allowing you to define your own function routing rules.</p> }<br /> }</code> -<p>An array of leftover segments are passed into <kbd>_remap()</kbd> as an optional second parameter.</p> - +<p>Any extra segments after the method name are passed into <kbd>_remap()</kbd> as an optional second parameter. This array can be used in combination with PHP's <a href="http://php.net/call_user_func_array">call_user_func_array</a> to emulate CodeIgniter's default behavior.</p> +<code>function _remap($method, $params = array())<br /> +{<br /> + $method = 'process_'.$method;<br /> + if (method_exists($this, $method)<br /> + {<br /> + return call_user_func_array(array($this, $method), $params);<br /> + }<br /> + show_404();<br /> +}</code> <a name="output"></a> |