How to write this if statement correctly? -Php Tutorial

Source: Internet
Author: User
How can I write this sentence if it is correct ?? If & nbsp; ($ _ GET [lx] & nbsp; 1): & nbsp; $ file_name & nbsp; $ r [titlepic]; else $ file_name & nbsp; $ r [picurl]; end & nbsp; how to write if this sentence is correct ?? How can I write this sentence if it is correct ??
If ($ _ GET ['lx '] = "1 "):
$ File_name = $ r ['titlepic '];
Else
$ File_name = $ r ['picurl'];
End if

How should I write this sentence correctly ??

Share:


------ Solution --------------------
if ($_GET['lx'] == "1"): 
$file_name = $r['titlepic'];
else:
$file_name = $r['picurl'];
endif;

------ Solution --------------------
if..endif syntax
The `alternative' way to write if/elseif/else statements, using if(); elseif(); else; endif; cannot be efficiently implemented without adding a large amount of complexity to the 3.0 parser. Because of this, the syntax has been changed: Example E-5. Migration: old if..endif syntax

if ($foo);
echo "yep\n";
elseif ($bar);
echo "almost\n";
else;
echo "nope\n";
endif;

Example E-6. Migration: new if..endif syntax

if ($foo):
echo "yep\n";
elseif ($bar):
echo "almost\n";
else:
echo "nope\n";
endif;

Notice that the semicolons have been replaced by colons in all statements but the one terminating the expression (endif).

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.