我不知道如何做以下工作:
find all instances of /s[2-9])/
and replace the space with a <br />
tag.
Something as simple as this doesn t work:
$preg_num = /s[2-9])/ ;
$preg_fix = " /<br>/[2-9]) ";
preg_replace($preg_num,$preg_fix,$notes);
我需要将“固定变量”的美元前值改为什么?