3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * DO NOT USE IN PRODUCTION */ function link_urls( $str ) { $linked = ''; $words = explode( ' ', $str ); foreach ( $words as &$word ) { if ( false === strpos( $word, '://' ) ) { continue; } $last_char = mb_substr( $word, -1 ); preg_match( '/[^a-zA-Z0-9\/]/', $last_char, $match ); $extra = ( $match ) ? $last_char : ''; $word = sprintf( '<a href="%1$s">%1$s</a>%2$s', ( '' === $extra ) ? $word : mb_substr( $word, 0, -1 ), $extra ); } return implode( ' ', $words ); } // Not this, keep scrolling. $body = <<<EOD Hello, This is the body of the email. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/index.php. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/index.php?why=whoknows. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com:80. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/#welcome. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/! No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/- No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/? No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/: No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at http://example.com/; No further action is needed on your part. Regards, Email Service EOD; echo link_urls( $body );
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
Hello, This is the body of the email. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com">http://example.com</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php">http://example.com/index.php</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php?why=whoknows">http://example.com/index.php?why=whoknows</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com:80">http://example.com:80</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/#welcome">http://example.com/#welcome</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>! No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>- No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>? No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>: No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>; No further action is needed on your part. Regards, Email Service
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 Hello, This is the body of the email. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com">http://example.com</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php">http://example.com/index.php</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/index.php?why=whoknows">http://example.com/index.php?why=whoknows</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com:80">http://example.com:80</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/#welcome">http://example.com/#welcome</a>. No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>! No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>- No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>? No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>: No further action is needed on your part. Howdy! Some plugins and themes have automatically updated to their latest versions on your site at <a href="http://example.com/">http://example.com/</a>; No further action is needed on your part. Regards, Email Service

preferences:
124.16 ms | 409 KiB | 156 Q