Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有人可以告诉我如何转换这个吗
eregi_replace(":rolleyes:", "<img src='./images/smilies/icon_rolleyes.gif' border='0'> ", $
我试过看 gonline,但我脑子里转不过来 不断收到这个错误 不断收到
不推荐使用 PHP:不推荐使用函数 eregi_replace()
自 PHP 5.3 起,该eregi_replace函数已被弃用。您应该改用修饰符preg_replace:i
eregi_replace
preg_replace
i
preg_replace('/:rolleyes:/i', '<img src="./images/smilies/icon_rolleyes.gif" border="0">', $var);