if (
{
elseif (
{
else
{
The inline (ternary) if.
•
The switch-case statement.
switch (
{
case
[break;]
case
[break;]
default:
}
The for loop statement.
for (
{
}
The foreach loop statement.
foreach (
{
[break];
[continue];
}
The while loop statement.
while (
{
}
The do-while loop statement.
do
{
} while (
The PHP functions.
function
{
[return
}
No comments:
Post a Comment