Jump to content

strpos help


frist44

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.