public static endsWith (mixed $str, mixed $end, [mixed $ignoreCase])
Check if a string ends with a given string
1 2 3 | echo Phalcon\Text::endsWith( "Hello" , "llo" ); // true echo Phalcon\Text::endsWith( "Hello" , "LLO" , false); // false echo Phalcon\Text::endsWith( "Hello" , "LLO" ); // true |
Please login to continue.