Jun
30
[REGEX-Cleaner.php] Replace all bbcode with a certain url
Byhi,
i have a problem with the REGEX and cleaner.php from impex tools.
what i want is to change the BBCode [IMG] of all images which have the "example.com" url to [AME] BBCode
to -->>
so this is my idea, but dont work:
are here experts that can fix this to a clean regexcode`?
i have a problem with the REGEX and cleaner.php from impex tools.
what i want is to change the BBCode [IMG] of all images which have the "example.com" url to [AME] BBCode
PHP Code:
[IMG]http://example.com/img/cbhdgvgdqarb.jpg[/IMG]
PHP Code:
[AME]http://example.com/img/cbhdgvgdqarb.jpg[/AME]
PHP Code:
$text = preg_replace('#(http.*example\.com.*)\[/img:[a-z0-9]+\]#siU', '[AME]h$1[/AME]', $text);
