Consider the following string:
this is a STRING WHERE some keywords ARE available. 'i need TO format the KEYWORDS from the STRING'
Yukarıdaki dize anahtar vardır STRING ve WHERE
Now i need to get an output as follows:
this is a <b>STRING</b> <b>WHERE</b> some keywords ARE available. 'i need TO format the KEYWORDS from the STRING'
So that the html output will be like:
this is a STRING WHERE some keywords ARE available. 'i need TO format the KEYWORDS from the STRING'
Bir alıntı ('...') dize içinde anahtar kelimeler göz ardı edilecek unutmayın. Yukarıdaki örnekte i tırnaklı dizge içinde STRING anahtar yok.
Verin bir modified version ve ben yukarıdaki gibi istenilen sonuç var böylece PHP komut şu:
$patterns = array('/STRING/','/WHERE/');
$replaces = array('<b>STRING</b>', '<b>WHERE</b>');
$string = "this is a STRING WHERE some keywords ARE available. 'i need TO format the KEYWORDS from the STRING'";
preg_replace($patterns, $replaces, $string);