3v4l.org

run code in 300+ PHP versions simultaneously
<?php $text= '<p>test paragraph.</p><a href="index.php">Click link</a><p>test paragraph.</p><a href="index.php">Click link</a><p>test paragraph.</p>'; $pos = strpos($text, "<a href"); // find first a href while($pos !== false){ // loop until there is no more a href $pos2 = strpos($text, "</a>", $pos)+4; // find the end tag of the a $text = substr($text, 0, $pos) . substr($text, $pos2); // remove the tag and link text $pos = strpos($text, "<a href"); // find the next. If none is found "false" is returned meaning while ends. } echo strip_tags($text); // strip away other tags.
Output for git.master, git.master_jit, rfc.property-hooks
test paragraph.test paragraph.test paragraph.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
33.24 ms | 401 KiB | 8 Q