From f9e2fdb55f5246661238615e12d3f920ef867124 Mon Sep 17 00:00:00 2001 From: pirland Date: Thu, 13 Dec 2018 02:31:49 -0600 Subject: [PATCH] Update index.md (#26333) Added and example of ternary syntax. --- guide/english/php/if-else-statement/index.md | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/guide/english/php/if-else-statement/index.md b/guide/english/php/if-else-statement/index.md index d602a255df..3f406fef25 100644 --- a/guide/english/php/if-else-statement/index.md +++ b/guide/english/php/if-else-statement/index.md @@ -90,26 +90,24 @@ For instance: ## Ternary Operators -Another option to consider when using short If/Else statements is the ternary operator. +Another important option to consider when using short If/Else statements is the ternary operator. -For instance: - -``` -PHP Alternative syntax for control structures