20070830

Simple substring-before function in php


function substring_before($haystack, $needle)
{
if ($i=stripos($haystack, $needle))
{// Needle found, return from start to needle
return(substr($haystack, 0, $i));
}
else
{// Needle not found
return $haystack;
}
}


Really need an explanation ?

2 comentarios:

Anónimo dijo...

Muy clara tu funcion

Anónimo dijo...

esta funcion lo hace, no se si no estaba antes

http://us2.php.net/manual/en/function.strstr.php