PHP String - How Many Ways to Include Variables in Double-Quoted Strings
Interview Question Database For Software Developers
|
|
| How Many Ways to Include Variables in Double-Quoted Strings | | How Many Ways to Include Variables in Double-Quoted Strings? - PHP Script Tips - Understanding String Literals and Operations | | By: FYIcenter.com | There are 3 formats to include variables in double-quoted strings:
- "part 1 $variable part 2" - This is the simplest format to include a variable in a string. The variable name starts
with the dollar sign and ends at the first character that can not be used in variable name. Space is good character
to end a variable name.
- "part 1${variable}part 2" - This format helps you to clearly end the variable name. The variable name starts at
dollar sign before the open brace (${) and ends at the close brace (}).
- "part 1{$variable}part 2" - This format is also called complex format. You use this format to specify
any complex variable expression in the same way as in a normal statement. The variable expression starts at ({$)
followed by a variable name and ends at (}).
Here is a PHP script example of different ways to include variables in double-quoted strings:
<?php
$beer = 'Heineken';
echo "$beer's taste is great.\n";
echo "He drank some ${beer}s and water.\n";
echo "She drank some {$beer}s and water.\n";
?>
This script will print:
Heineken's taste is great.
He drank some Heinekens and water.
She drank some Heinekens and water.
| | ID: 412 | Rank: 1089 | Votes: 0 | Views: 40 | Submitted: 20070420 |
Copyright © 2009 FYIcenter.com
All rights in the contents of this Website are reserved by the individual author.
No part of the contents may be reproduced in any form without author's permission.
|
|
|