开发者

Mixing a PHP variable with a string literal

开发者 https://www.devze.com 2023-02-18 18:40 出处:网络
Say I have a variable $test and it\'s defined as: $test = \'cheese\' I want to output cheesey, which I can do like 开发者_如何学Pythonthis:

Say I have a variable $test and it's defined as: $test = 'cheese'

I want to output cheesey, which I can do like 开发者_如何学Pythonthis:

echo $test . 'y'

But I would prefer to simplify the code to something more like this (which wouldn't work):

echo "$testy"

Is there a way to have the y be treated as though it were separate from the variable?


echo "{$test}y";

You can use braces to remove ambiguity when interpolating variables directly in strings.

Also, this doesn't work with single quotes. So:

echo '{$test}y';

will output

{$test}y


You can use {} arround your variable, to separate it from what's after:

echo "{$test}y"

As reference, you can take a look to the Variable parsing - Complex (curly) syntax section of the PHP manual.


Example:

$test = "chees";
"${test}y";

It will output:

cheesy

It is exactly what you are looking for.


"${test}y" is deprecated since PHP 8.2, use "{$test}y" instead. (Note the $ being covered by the curly braces.)


$bucket = '$node->' . $fieldname . "['und'][0]['value'] = " . '$form_state' . "['values']['" . $fieldname . "']";

print $bucket;

yields:

$node->mindd_2_study_status['und'][0]['value'] = $form_state['values']
['mindd_2_study_status']
0

精彩评论

暂无评论...
验证码 换一张
取 消