Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 18ac9009

Přidáno uživatelem Ondřej Fibich před asi 9 roky(ů)

Fix merge issue that removed all staff from developer branch :-).

Zobrazit rozdíly:

application/helpers/text.php
* @author Ondřej Fibich
* @param string $str String
* @param string $start Start
* @param bool $icase Ignore case? [optional]
* @return bool true if first string starts with second
*/
public static function starts_with($str, $start)
public static function starts_with($str, $start, $icase = FALSE)
{
return strncmp($str, $start, mb_strlen($start)) == 0;
if ($icase === TRUE)
{
return strncasecmp($str, $start, mb_strlen($start)) == 0;
}
else
{
return strncmp($str, $start, mb_strlen($start)) == 0;
}
}
/**

Také k dispozici: Unified diff