greenheart Posted October 10, 2009 Share Posted October 10, 2009 Hello I have a variable $work that is defined by a search of a document for a certain string of words. Sometimes those words don't exist, so i would like to have an if statment like: if($work == NULL){$work = "no match found"} but one that works. I'm trying to say if variable $work doesn't exist (is null) then relabel it "no match found". Please advise me how to change my attempt to get this to work. Thank you Quote Link to comment https://forums.phpfreaks.com/topic/177153-if-statment-for-the-scenario-variable-is-undefined/ Share on other sites More sharing options...
mikesta707 Posted October 10, 2009 Share Posted October 10, 2009 if (!isset($work) || empty($work)){ //whatever } Quote Link to comment https://forums.phpfreaks.com/topic/177153-if-statment-for-the-scenario-variable-is-undefined/#findComment-934092 Share on other sites More sharing options...
greenheart Posted October 10, 2009 Author Share Posted October 10, 2009 Thanks. Can you explain what I need to put in where whatever is? Will $work = "no match found" do it? Because I tried that and it didn't work. Quote Link to comment https://forums.phpfreaks.com/topic/177153-if-statment-for-the-scenario-variable-is-undefined/#findComment-934503 Share on other sites More sharing options...
greenheart Posted October 10, 2009 Author Share Posted October 10, 2009 Basically it gives no match found for every case, when there are cases when the variable is definitely not null. Quote Link to comment https://forums.phpfreaks.com/topic/177153-if-statment-for-the-scenario-variable-is-undefined/#findComment-934510 Share on other sites More sharing options...
mikesta707 Posted October 10, 2009 Share Posted October 10, 2009 post the code that comes before and after that if statement. I can't tell you whats wrong with so little information Quote Link to comment https://forums.phpfreaks.com/topic/177153-if-statment-for-the-scenario-variable-is-undefined/#findComment-934519 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.