libphonenumber\PhoneNumberUtil::stringEndsWithString PHP Method

stringEndsWithString() protected method

protected stringEndsWithString ( $hayStack, $needle )
    protected function stringEndsWithString($hayStack, $needle)
    {
        $revNeedle = strrev($needle);
        $revHayStack = strrev($hayStack);
        return strpos($revHayStack, $revNeedle) === 0;
    }
PhoneNumberUtil