Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8417759
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T02:08:31+00:00 2026-06-10T02:08:31+00:00

Can someone please explain to me the use of alternative syntax I often come

  • 0

Can someone please explain to me the use of alternative syntax I often come across when looking at php usage in word press. Take conditionals for example:

I expect to see:

if(10==10)
echo 'this is true and will be shown';

Instead, I see:

if(10==10):
echo 'this is true and will be shown;
end if;

And another example:

! empty ( $classes_names ) 
and  $class_names = ' class="'. esc_attr( $class_names ) . '"';

Whats with the ‘:’ the ‘end if;’ and the last examples syntax is not something I have seen before put together like that.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T02:08:32+00:00Added an answer on June 10, 2026 at 2:08 am

    This is the alternative logic syntax in PHP – you can read all about it here – http://php.net/manual/en/control-structures.alternative-syntax.php

    If you are including conditional statements in amongst HTML or other code then it makes things look a lot neater.

    For example:

    <body>
    <? if($_GET['name']=='Dave') {?>
    <h3>Hello Dave!</h3>
    <? } else { ?>
    <h3>Hello Stranger!</h3>
    <? }?>
    </body>
    

    Looks much nicer IMO as:

    <body>
    <? if($_GET['name']=='Dave'):?>
    <h3>Hello Dave!</h3>
    <? else:?>
    <h3>Hello Stranger!</h3>
    <? endif;?>
    </body>
    

    As for the final code example – this is another way of writing an if statement – so this:

    <? !empty ( $classes_names ) and  $class_names = ' class="'. esc_attr( $class_names ) . '"';?>
    

    Is the same as:

    <? 
    if (!empty($classes_names)){
    $class_names = ' class="'. esc_attr( $class_names ) . '"';
    }
    ?>
    

    That is definitely confusing for sure!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone please explain me why would a UDP Server not need to use
Can someone please explain what's the real use of a Tuple ?
Can someone please explain below in detail, 1- What is the use of ActivityManager
Can someone please explain why I should use (or should I?): <script type=text/javascript src=@Url.Content(/Scripts/SomeScript.js)></script>
Can someone please explain to me, why every time I use the FlowLayout Layout
Obviously I'm new to as3...Can someone please explain to me how I can use
Can someone please explain how JAR files and the Java class loader make use
Can someone please explain why I should use strstr or string find() ? Which
Can someone please explain the use of XA dataSource and how transaction management works
This may sound very basic... can someone please explain the use of the toString()

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.