PHP Shorthand if Statements
Posted 2024-05-17 07:47:03
0
4K
Short Hand If
To write shorter code, you can write if
statements on one line.
ExampleGet your own PHP Server
One-line if
statement:
$a = 5;
if ($a < 10) $b = "Hello";
echo $b
Try it Yourself »Short Hand If...Else
if
...else
statements can also be written in one line, but the syntax is a bit different.
Example
One-line if
...else
statement:
$a = 13;
$b = $a < 10 ? "Hello" : "Good Bye";
echo $b;
Try it Yourself »This technique is known as Ternary Operators, or Conditional Expressions.
Cerca
Categorie
- Art
- Causes
- Crafts
- Dance
- Drinks
- Film
- Fitness
- Food
- Giochi
- Gardening
- Health
- Home
- Literature
- Music
- Networking
- Altre informazioni
- Party
- Religion
- Shopping
- Sports
- Theater
- Wellness
Leggi tutto
PHP - Slicing Strings
Slicing
You can return a range of characters by using the substr() function.
Specify...
PHP Arrays
An array stores multiple values in one single variable:
ExampleGet your own PHP Server
$cars...
PHP foreach Loop
The foreach loop - Loops through a block of code for each element in an array or each...
PHP Functions
The real power of PHP comes from its functions.
PHP has more than 1000 built-in functions, and...
PHP Nested if Statement
Nested If
You can have if statements inside if statements, this is...