doesntStartWith/doesntEndWith

  • Laravel
1use Illuminate\Support\Str;
2 
3Str::doesntEndWith('This is my name', 'dog'); // true
4Str::doesntEndWith('This is my name', ['name', 'foo']); // false
5 
6Str::doesntStartWith('This is my name', 'That'); // true
7Str::doesntStartWith('This is my name', ['This', 'That', 'There']); // false