Mysql
 sql >> Database >  >> RDS >> Mysql

PHP:come visualizzare una variabile (a) all'interno di un'altra variabile (b) quando la variabile (b) contiene testo

Potrebbe essere meglio usare sprintf() qui.

$string = "%s is the name of a recently formed company hoping to take over the lucrative hairdryer design %s.";

$teamName = "My Company";
$sector = "sector";

echo sprintf($string, $teamName, $sector);
// My Company is the name of a recently formed company hoping to take over the lucrative hairdryer design sector.

Nel tuo database memorizzi $string . Usa sprintf() per sostituire i valori delle variabili.