Ends with

Returns true or fales depending on whether the text ends with the given string or not.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/**
 * EndsWith
 * Tests whether a text ends with the given
 * string or not.
 *
 * @param     string
 * @param     string
 * @return    bool
 */
function EndsWith($Haystack$Needle){
    // Recommended version, using strpos
    return strrpos($Haystack$Needle) === strlen($Haystack)-strlen($Needle);
}
 
// Another way, using substr
function EndsWith_Old($Haystack$Needle){
    return substr($Haystackstrlen($Needle)*-1) == $Needle;
}
//Example:
$ExampleText = '[snippet]';
 
if (EndsWith($ExampleText']')){
    print 'The string ends with -> ] <-';
}
 
 
$ExampleText = 'Evil monkey';
 
if (!EndsWith($ExampleText'evil')){
    print 'The text does not start with evil!';
}
X

Url: http://www.jonasjohn.de/snippets/php/ends-with.htm

Language: PHP | User: ShareMySnippets | Created: Oct 16, 2013