up vote 1 down vote favorite
share [g+] share [fb]

I have a URL like

http://abc.com/users/index/University of Kansas and i want to make it University-of-Kansas. How is it possible via mysql using Cakephp ???

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Use can use the Cake built in Inflector::slug($data, '-');

Source: http://api.cakephp.org/class/inflector#method-Inflectorslug

So you would get the string "University of Kansas" from the $this->params['url']:

$data = $this->params['url'][....]:
$slug = Inflector::slug($data, '-');
link|improve this answer
feedback

I'm not sure how your data is being populated, but you probably want to store a tag, or slug field along with the full title. So your database would have both "University of Kansas" and also "University-of-Kansas" in a separate field. When you save an entry, you can auto-generate the latter field w/ a regex such as:

$slug = preg_replace("/[^-_0-9A-Za-z]/", "-", $title);

Depending on how your CakePHP is set up, you'd probably want to create a route that passed this slug value into the controller, so you could then look up the right entry in the database using that field.

link|improve this answer
It is much more useful to tell the person how to use Cake's built in tools for something like this. Inflector::slug is the correct solution here. – Abba Bryant Nov 13 '09 at 18:28
feedback

http://cake-syrup.sourceforge.net/ingredients/sluggable-behavior/

This is a behavior that allows your model to create slugs when records get saved or edited.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.