Du kanske är bättre att använda sprintf()
här.
$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.
I din databas lagrar du $string
. Använd sprintf()
för att ersätta variabelvärdena.