“Variabel php dalam string” Kode Jawaban

variabel php dalam string

$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

cara membuat variabel dalam php

$varName = "Hello, World";
Weeper Capuchin

Variabel php dalam string

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

PHP menggabungkan dua variabel

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

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

Jawaban yang mirip dengan “Variabel php dalam string”

Pertanyaan yang mirip dengan “Variabel php dalam string”

Lebih banyak jawaban terkait untuk “Variabel php dalam string” di PHP

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya