DEV Community

Discussion on: How To Check if String Contains Specific Word in PHP Laravel

Collapse
 
damosse31 profile image
Damien M

Prefer stripos if you need to check case insensitive

php.net/stripos

Collapse
 
codeanddeploy profile image
Code And Deploy

Nice. Thanks.