It's smart to have your program say
"there IS in stock" or
"there ARE 2 in stock" ... but if you write your code using an "if" and "else" type structure it can become quite verbose.
The
? ... : operator - available in many languages including C, Perl and PHP - allows you to write a single "if,else" line in a much shorter form:
{condition} ? {value if true} : {value if false}
Here's an subtle example of this operator in use - an image from our pricing for a two day public course:
where you'll note "room" and "rooms". The code, where $ns is a variable containing the number of students:
$rlet = ($ns==1) ? "":"s";
$pricing[$ns] .= "<b>With hotel room$rlet<b><br>"; (written 2007-05-18 08:25:17)
Associated topics are indexed under
C203 - C and C based languages - Conditionals and Loops [2570] Function Prototypes in C - (2010-01-11)
[2002] New C Examples - pointers, realloc, structs and more - (2009-01-20)
[1696] Saying NOT in Perl, PHP, Python, Lua ... - (2008-07-04)
[1582] Ruby, C, Java and more - getting out of loops - (2008-03-19)
[1220] for loop - how it works (Perl, PHP, Java, C, etc) - (2007-06-06)
[962] Breaking a loop - Ruby and other languages - (2006-12-03)
[353] Wimbledon Neck - (2005-06-20)
H104 - PHP - Control Statements [2912] Predictions for the seagull population - (2010-08-09)
[2304] Extracting real data from an exported file in PHP or Perl - (2009-07-25)
[1825] Question Mark - Colon operator (Perl and PHP) - (2008-10-08)
[1477] Decisions - small ones, or big ones? - (2007-12-18)
[1199] Testing for one of a list of values. - (2007-05-22)
[863] Double and Triple equals operator in PHP - (2006-09-12)
[657] The ternary operator in Python - (2006-03-25)
[421] Don't repeat code - use loops or functions - (2005-08-21)
[406] Assignment, equality and identity in PHP - (2005-08-08)
[340] Code and code maintainance efficiency - (2005-06-08)
P204 - Perl - Conditionals and Loops [2832] Are you learning Perl? Some more examples for you! - (2010-06-27)
[1727] Equality and looks like tests - Perl - (2008-07-29)
[1468] Lexical v Arithemetic testing, Bash and Perl - (2007-12-11)
P206 - Perl - More Loops and Conditionals [2892] Alternative loops and conditionals in Ruby and Perl - (2010-07-28)
[2824] A pint of Black Rat, and a lazy barman - (2010-06-25)
[2817] Setting a safety net or fallback value in Perl - (2010-06-19)
[2815] switch and case, or given and when in Perl - (2010-06-17)
[2711] For loop - checked once, or evety time? Ruby v Perl comparison and contrast - (2010-04-07)
[299] What - no switch or case statement? - (2005-05-03)
[138] Perl - redo and last without a loop - (2004-12-02)
Some other Articles
Regular Express PrimerDrawing hands on a clock face - PHPDangerous Dogs and Hotel MarketingWhat are WEB-INF and META-INF directories?Smart English Output - via PHP and Perl ? : operatorSave the Forum - A regular clean sweepMeet, greet and welcomeWhat shape is your shake?Updating a page strictly every minute (PHP, Perl)Two new pages / sites