Check if URL has certain string with PHP

I would like to know if some word is present in the URL.

For example, if word car is in the URL, like www.domain.com/car/ or www.domain.com/car/audi/ it would echo ‘car is exist’ and if there’s nothing it would echo ‘no cars’.

Leave a Comment