php - Find string in REQUEST_URI -
i need searching content of request_uri
.
if $_server['request_uri']
contains rmb_twi
something.
this beyond simple. read manual entry strpos()
if (false !== strpos($_server['request_uri'], 'rmb_twi')) { // }
Comments
Post a Comment