Skip to content

Instantly share code, notes, and snippets.

@solepixel
Created August 29, 2015 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solepixel/0b2a18699e74e0abf1e0 to your computer and use it in GitHub Desktop.
Save solepixel/0b2a18699e74e0abf1e0 to your computer and use it in GitHub Desktop.
CodeIgniter _remap function.
<?php
function _remap($method)
{
if (method_exists($this, $method)){
$this->$method($this->uri->segment(3));
} else {
$this->index($method);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment