What is the correct syntax for including multiple "or" conditions in a PHP if statement?

When including multiple "or" conditions in a PHP if statement, you can use the logical operator "||" to combine the conditions. This operator allows you to check if any of the conditions are true. Each condition should be enclosed in parentheses to ensure proper evaluation.

if ($condition1 || $condition2 || $condition3) {
    // Code to execute if any of the conditions are true
}