Tốt hơn là bạn nên sử dụng sprintf()
tại đây.
$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.
Trong cơ sở dữ liệu của mình, bạn lưu trữ $string
. Sử dụng sprintf()
để thay thế các giá trị biến.