vote up 0 vote down star

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 ???

flag

25% accept rate

3 Answers

vote up 2 vote down

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|flag
vote up 0 vote down

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|flag
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 at 18:28
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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