aeroswat Posted January 27, 2010 Share Posted January 27, 2010 Or does it only work for strings? What I wanna do is use one of the (i don't know if it's the proper term or not) conditional statements inside of the for loop definition like this... for($i=(some conditional ? $var : $var2);$i<(some conditional ? $var3 : $var4);$i++) { code } Link to comment https://forums.phpfreaks.com/topic/190045-is-it-possible-to-use-one-of-those-conditionals-in-a-for-loop/ Share on other sites More sharing options...
Alex Posted January 27, 2010 Share Posted January 27, 2010 It's called the ternary operator, and yea that's perfectly valid. Why don't you just try it? Link to comment https://forums.phpfreaks.com/topic/190045-is-it-possible-to-use-one-of-those-conditionals-in-a-for-loop/#findComment-1002667 Share on other sites More sharing options...
aeroswat Posted January 27, 2010 Author Share Posted January 27, 2010 It's called the ternary operator, and yea that's perfectly valid. Why don't you just try it? Thank you Just cause I don't want to invest a lot of time in it to find that it doesn't work Much faster to ask someone if what i want to do would work then do it I love this place though. Most of the time I get the most helpful solutions/answers. Thanks again. Link to comment https://forums.phpfreaks.com/topic/190045-is-it-possible-to-use-one-of-those-conditionals-in-a-for-loop/#findComment-1002668 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.