Skip to content

Instantly share code, notes, and snippets.

@ayies128
Last active February 1, 2017 09:11
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 ayies128/f0a72dc46a39f628134ae8c87940e410 to your computer and use it in GitHub Desktop.
Save ayies128/f0a72dc46a39f628134ae8c87940e410 to your computer and use it in GitHub Desktop.
CodeIgniter URIパスとセグメントをごにょる ref: http://qiita.com/ss_watanabe/items/93b624e14bfb282eb079
<button type="button" onclick="location.href='http://localhost/seach/list'">reset</button>
<button type="button" onclick="location.href='<?= base_url() . uri_string() ?>'">reset</button>
<button type="button" onclick="location.href='<?= base_url() . ($this->uri->segment(3) ? str_replace($this->uri->slash_segment(3, 'leading'), '', uri_string()) : uri_string()) ?>'">reset</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment