“Variable PHP en chaîne” Réponses codées

Variable PHP en chaîne

$a = '12345';

// This works:
echo "qwe{$a}rty"; // qwe12345rty, using braces
echo "qwe" . $a . "rty"; // qwe12345rty, concatenation used

// Does not work:
echo 'qwe{$a}rty'; // qwe{$a}rty, single quotes are not parsed
echo "qwe$arty"; // qwe, because $a became $arty, which is undefined
Encouraging Eland

comment faire une variable en php

$varName = "Hello, World";
Weeper Capuchin

Variable PHP en chaîne

phpCopy#php 7.x
<?php
$prefix = "Comfort";
$suffix = "able";
echo "{$prefix}{$suffix}";
?>
CodeGuruDev

PHP concaténate deux variables

$string = "the color is ";
$string .= "red";

echo $string; // gives: the color is red
John wick

Réponses similaires à “Variable PHP en chaîne”

Questions similaires à “Variable PHP en chaîne”

Plus de réponses similaires à “Variable PHP en chaîne” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code