Showing 10 of 1,280 results.

Example Use | Laravel 5 String Helpers: ends_with global helper

1 use Illuminate \ Support \ Str ; 2 3 // true 4 Str :: endsWith ( ' A simple sentence. ' , ' . ' ) ; 5 6 // false 7 Str :: endsWith ( ' No punctuation here ' , ' . ' ) ; 8 9 // false 10 Str :: endsWith ( ' Case matters ' , ' S ' ) ; 11 12 // true...