phpcodeigniter-2codeigniter-url

CodeIgniter text to url


Can't find if codeigniter have any build-in helper to format string to url? For example "Lorem ipsum dolor sit amet" will be "lorem-ipsum-dolor-sit-amet" or something like that.


Solution

  • Specifically, CodeIgniter has the url_title() method, which does what you're asking for. This method will remove all non URL usable characters.

    $title = "Here's a string!";
    $url_title = url_title($title);
    
    // Produces: Heres-a-string
    

    The documentation for this method (as well as the other URL helper methods built into CI) can be found here.