vote up 5 vote down star

PHP allows me to:

Hello, my name is <?php echo $name ?>, and stuff.

Is that okay to do instead of

Hello, my name is <?php echo $name; ?>, and stuff.

I know the <?= ?> is being taken away, is this another one of those shortcuts to be killed?

flag

2  
The correct syntax is of course <?php echo htmlspecialchars($name); ?>... – bobince Nov 1 at 0:45
<?php echo htmlspecialchars(...); ?> It's beyond me why you need to type 32 characters (not including the actual value) to perform one of the most common operations in PHP (print escaped content into HTML). – gahooa Nov 1 at 3:45
I actually do all that stuff in a controller, so my code is good as it stands :P – rpflo Nov 2 at 6:00

3 Answers

vote up 11 vote down check

It's technically okay, but most people will recommend against it. It's a "best practices" issue. If you get in the habit of leaving off the semicolon in single lines of code like that, it's more likely that you'll forget to do it in larger sections of code where it is required.

link|flag
Good to know, thank you. – rpflo Nov 1 at 0:16
vote up 0 vote down

It's not so much a shortcut as it is a bad habit which the interpreter doesn't do enough to discourage.

link|flag
vote up 0 vote down

I wouldn't count on it being legal, since something like this is legal:

<?php
    if($do_display) {
?>
    <div id="display">
    </div>
<?php
    }
?>

IMO, that's a horrible way to design pages, but...since that's legal, it would lead me to believe that parser state is kept between blocks, so your shortcut might only work for one block. That's an untested gut shot, but an educated one. (If it works now, it might not soon, we see what's happening with <?= ?>.) Might as well just drop the semicolon in and get it overwith.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.