How I check in PHP if a string contains or not specific things? -
i need function in php work in way.
$string = "blabla/store/home/blahblah"; if in $string find /store/ this, else that.
how can it?
thanks!
$string = "blabla/store/home/blahblah"; if (preg_match("|/store/|", $string)){ //do } else{ //do }
or
$string = "blabla/store/home/blahblah"; if (false !== strpos($string, "/store")){ //do } else{ //do }
Comments
Post a Comment