i wanna change 1 word in my P tag, how can i change the specific word in p tag?
i need to replace 1 word in this tag.
$tehra='/word/';
echo preg_replace($tehra, 'word i want to change', 'my paragraph',1);
i wanna change 1 word in my P tag, how can i change the specific word in p tag?
i need to replace 1 word in this tag.
$tehra='/word/';
echo preg_replace($tehra, 'word i want to change', 'my paragraph',1);
You have the replacement and subject back to front
$tehra='@(word)@';
echo preg_replace( $tehra, 'my paragraph', 'The sentence with the word i want to change' );
Will yield:
The sentence with the my paragraph i want to change