我想做类似的事情:
<?php
$text = "<font style='color: #fff'>";
$replaceandshow = str_replace("<font style=\"?\">", "the font style is ?", $text);
echo $replaceandshow;
?>
例如?是颜色:#fff,但我希望 PHP 会自行跟踪它,是否可能 + 如果可能,我该怎么做?
PS:有人给了我一个代码,但它现在可以工作了,它为我显示了一个白页。
<?php
$colorstring = "<font style='#fff'>";
$searchcolor = preg_replace('[a-fA-F0-9]{3,6}','[font style=$1]Test[/font]',$colorstring);
echo $searchcolor;
感谢您的帮助。