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

My php is weak and I'm trying to change this string:

http://www.site.com/backend.php?/c=crud&m=index&t=care

to be:

http://www.site.com/backend.php?c=crud&m=index&t=care

removing the / after the ? on backend.php. Any ideas on the best way to do this?

Thanks!

link|improve this question

You should actually mark CMS' answer as the correct one. – eyelidlessness Nov 5 '08 at 6:50
feedback

4 Answers

up vote 22 down vote accepted

I think that it's better to use simply str_replace, like the manual says:

If you don't need fancy replacing rules (like regular expressions), you should always use this function instead of ereg_replace() or preg_replace().

<?
$badUrl = "http://www.site.com/backend.php?/c=crud&m=index&t=care";
$goodUrl = str_replace('?/', '?', $badUrl);
link|improve this answer
You've got my vote. – eyelidlessness Nov 5 '08 at 7:06
Thanks eyelidlessness ;) – CMS Nov 5 '08 at 7:13
feedback
$str = preg_replace('/\?\//', '?', $str);

Edit: See CMS' answer. It's late, I should know better.

link|improve this answer
Thanks, that's perfect. – Zero Cool Nov 5 '08 at 6:48
str_replace is blindingly faster than a regex. – Pestilence Oct 1 '11 at 22:01
@Pestilence, that's why I recommended CMS' answer. – eyelidlessness Oct 2 '11 at 18:21
feedback

While a regexp would suit here just fine, I'll present you with an alternative method. It might be a tad faster than the equivalent regexp, but life's all about choices (...or something).

$length = strlen($urlString);
for ($i=0; $i<$length; i++) {
  if ($urlString[$i] === '?') {
    $urlString[$i+1] = '';
    break;
  }
}

Weird, I know.

link|improve this answer
Er, what if $urlString[$i+1] isn't /? – eyelidlessness Nov 5 '08 at 6:45
looping through the string char by char is bad coding mate. – MDCore Nov 5 '08 at 6:52
eyelidlessness: the problem didn't present that case, so neither did my solution take it into account. MDCore: please elaborate, why so? – Henrik Paul Nov 5 '08 at 7:16
I've run into a problem where it's useful. If your string is on the order of megs in size (it can happen), running preg_replace or str_replace will risk hitting your php.ini's memory_limit. The pcre_replace code in php always mallocs 2x your string size before doing anything, so it can be an issue. – firebird84 Mar 26 '09 at 16:15
Going from my previous comment, if your string is really huge, you can do some strpos tricks to find the right pieces, preg_match them, and then use the above bracket notation to eliminate the characters you don't want. Use with care, since it's not fast, but it will save memory. – firebird84 Mar 26 '09 at 16:16
feedback
$splitPos = strpos($url, "?/");
if ($splitPos !== false) {
    $url = substr($url, 0, $splitPos) . "?" . substr($url, $splitPos + 2);
}
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.