frist44 Posted January 1, 2010 Share Posted January 1, 2010 I’m trying to test if the string ‘login’ or ‘join’ is in my URL and if so, do set a session variable. For just one, I have: if (strpos(cur_url(), ‘login’) === FALSE) $this->set_prev_url(); however, if I add an “or” condition to put ‘join’, it’ll write the session even when it’s on the login, because the ‘join’ condition will be satisfied. Ex: if (strpos(cur_url(), ‘login’) === FALSE OR strpos(cur_url(), ‘join’) === FALSE) $this->set_prev_url(); How could I pass in a few strings and test the same condition? I would ideally like to just present an array to the function and if none of the elements are present, run the function. Link to comment https://forums.phpfreaks.com/topic/186864-strpos-help/ Share on other sites More sharing options...
sasa Posted January 1, 2010 Share Posted January 1, 2010 change OR to AND Link to comment https://forums.phpfreaks.com/topic/186864-strpos-help/#findComment-986835 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.