3v4l.org

run code in 500+ PHP versions simultaneously
<?php $examples = [ 'Understanding vector<int> in Modern C++', 'Why "<spoiler>" Became Internet Slang', 'The Rise of <headless> CMS Architecture', 'Using <T> and <K, V> in Generic Programming', 'The Hacker Known as <null>', ]; foreach ($examples as $s) { echo "Original : $s\n"; echo "Stripped : " . strip_tags($s) . "\n"; echo str_repeat('-', 50) . "\n"; }
Output for 8.3.0 - 8.3.30, 8.4.1 - 8.4.21, 8.5.0 - 8.5.6
Original : Understanding vector<int> in Modern C++ Stripped : Understanding vector in Modern C++ -------------------------------------------------- Original : Why "<spoiler>" Became Internet Slang Stripped : Why "" Became Internet Slang -------------------------------------------------- Original : The Rise of <headless> CMS Architecture Stripped : The Rise of CMS Architecture -------------------------------------------------- Original : Using <T> and <K, V> in Generic Programming Stripped : Using and in Generic Programming -------------------------------------------------- Original : The Hacker Known as <null> Stripped : The Hacker Known as --------------------------------------------------

preferences:
29.48 ms | 754 KiB | 4 Q