बेहतर होगा कि आप sprintf()
का उपयोग करें।
यहाँ।
$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.
अपने डेटाबेस में, आप $string
. स्टोर करते हैं . sprintf()
का उपयोग करें परिवर्तनीय मानों को प्रतिस्थापित करने के लिए।