Mysql
 sql >> Base de données >  >> RDS >> Mysql

PHP :Comment afficher une variable (a) dans une autre variable (b) lorsque la variable (b) contient du texte

Vous feriez peut-être mieux d'utiliser sprintf() ici.

$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.

Dans votre base de données, vous stockez $string . Utilisez sprintf() pour substituer les valeurs des variables.