eregi_replace sorun!

0 Cevap php

şimdi ben bir eregi_replace sorun var:

Ben bu var

$subject = "This is for @codeworxx - you have to try first!";
$text = eregi_replace('(((@))[-a-zA-Z0-9]+)','<a href="http://www.google.de/\\1">\\1</a>', $subject);
echo $text;

Everything works fine, but the

<a href="http://www.google.com/@codeworxx">@codeworxx</a>

ama ben bunu istiyorum:

<a href="http://www.google.com/codeworxx">codeworxx</a>

nasıl?

Thanks, Sascha

0 Cevap