The Ternary Operator in PHP

What You'll Be Creating

From The Video

The ternary operator allows us to simplify some PHP conditional statements. We'll see how it can be used, with test-driven development and refactoring, to simplify code like:

Written using a ternary operator, we can write the above comparison as:

This is obviously a much simpler way to write relatively easy to understand conditional statements and something we should consider when writing future code,

Tags:

Comments

Related Articles