|
Posted by Johannes Wienke on 04/11/06 00:05
Am 10.04.2006 22:47 schrieb pieterprovoost@gmail.com:
> Hi,
>
> I would like to use the ereg_replace() function to replace wiki-like
> syntax, for example:
>
> [[somepage]]
> becomes <a href="index.php?page=somepage">somepage</a>
>
> **hello**
> becomes <i>hello</i>
>
> The problem with the first example is that "somepage" occurs twice
> after the replacement, the problem with the second example is that the
> opening and closing tags "**" are identical. Can anyone refer me to a
> good page on ereg_replace(), or help me with these examples?
Take a look at the manual. Don't use ereg-functions anymore!
preg_replace is much faster.
Navigation:
[Reply to this message]
|