3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text = 'Visit [my page](http://example.com/posts/), %http://example.com%'; $search = 'http://example.com'; $dehydrated = strtr($text, ['%' => '%%', $search => '%WEBSITE_URL%']); $replace = 'http://another-site.net'; $rehydrated = strtr($dehydrated, ['%%' => '%', '%WEBSITE_URL%' => $replace]); echo $rehydrated;

preferences:
29.57 ms | 404 KiB | 5 Q