View Single Post
Old 09-21-2011, 05:59 AM  
idogfy
Registered User
 
Industry Role:
Join Date: Sep 2011
Posts: 12
Copy paste that

PHP Code:
<?php
//try it with 
$title='  I  can     replace      several   spaces   ';
//you probably don't want to add a dash at the beginning or at the end of the $title if there is some space at the beginning or at the end
$title trim($title);
// \s+ is the "pattern" you want to replace with dashes
$new_title preg_replace('/\s+/','-',$title);
echo 
$new_title;
Have fun with title and dashes

Last edited by idogfy; 09-21-2011 at 06:02 AM..
idogfy is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook