Tools, FAQ, Tutorials:
Including Variables in Double-Quoted Strings in PHP
How To Include Variables in Double-Quoted Strings?
✍: FYIcenter.com
Variables included in double-quoted strings will be interpolated. Their values will be concatenated into the enclosing strings. For example, two statements in the following PHP script will print out the same string:
<?php $variable = "and"; echo "part 1 $variable part 2\n"; echo "part 1 ".$variable." part 2\n"; ?>
This script will print:
part 1 and part 2 part 1 and part 2
⇒ Ways to Include Variables in Double-Quoted Strings in PHP
⇐ Escape Sequences in Double-Quoted Strings in PHP
2016-10-13, ∼2886🔥, 0💬
Popular Posts:
How to use urllib.parse.urlencode() function to encode HTTP POST data? My form data has special char...
Why I am getting "LNK1104: cannot open file 'MSCOREE.lib'" error when building a C++/CLI program? Vi...
How To Use an Array as a Queue in PHP? A queue is a simple data structure that manages data elements...
How To Truncate an Array in PHP? If you want to remove a chunk of values from an array, you can use ...
Where to find tutorials on HTML language? I want to know how to learn HTML. Here is a large collecti...