timothyarden Posted September 24, 2013 Share Posted September 24, 2013 (edited) Hi,Just wanted to check with everyone that I am getting the Logic right with the use of the Ternary ? : Operator isset( $Files ) ? isset( $Directories ) ? __DisplayResults__( $Files, $Directories ) : __DisplayResults__( $Files, NULL ) : isset( $Directories ) ? __DisplayResults__( NULL, $Directories ) : $error = "Neither Directories or Folders are set"; So that should do the same as if( isset( $Files ) && isset( $Directories ) ){ __DisplayResults__( $Files, $Directories ); } elseif( isset( $Files ) ){ __DisplayResults__( $Files, NULL ); } elseif( isset( $Directories ) ){ __DisplayResults__( NULL, $Directories ); } else { $error = "Neither Directories or Folders are set" } Thanks Edited September 24, 2013 by timothyarden Quote Link to comment Share on other sites More sharing options...
Solution timothyarden Posted September 24, 2013 Author Solution Share Posted September 24, 2013 Nevermind, managed to figure it out on my own, needed Parenthesis Example: $Files = TRUE; $Directories = NULL; isset( $Files ) ? ( isset( $Directories ) ? $a = "Files & Directories" : $a = "Files" ) : ( isset( $Directories ) ? $a = "Directories" : $a = "Neither" ); echo $a; Quote Link to comment Share on other sites More sharing options...
sKunKbad Posted September 24, 2013 Share Posted September 24, 2013 The problem with what you've done is that it makes the code much harder to read. When you come back to this in the future, or if somebody else has to work with your code, your nested ternary operations require much more effort to review. If instead you did something like this, anyone can understand what is going on in about 1 second: $f = isset( $Files ) ? $Files : NULL; $d = isset( $Directories ) ? $Directories : NULL; if( is_null($f) && is_null($d) ){ $error = "Neither Directories or Folders are set"; }else{ __DisplayResults__( $f, $d ); } Quote Link to comment Share on other sites More sharing options...
timothyarden Posted September 24, 2013 Author Share Posted September 24, 2013 (edited) Yeah, I wanted a one line solution though hahathe parenthesis work fine and make it easily readablealso unless Im not reading your code right it would need 2 more elseif conditions - I just found it much simpler to it in the one line instead of 10thanks for the tip though Edited September 24, 2013 by timothyarden Quote Link to comment 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.