3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Html { protected $reachedLimit = false, $totalLen = 0, $maxLen = 25, $toRemove = array(); public static function trim($html, $maxLen = 25) { $dom = new DomDocument(); if (version_compare(PHP_VERSION, '5.4.0') < 0) { $dom->loadHTML($html); } else { $dom->loadHTML($html, LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD); } $instance = new static(); $toRemove = $instance->walk($dom, $maxLen); // remove any nodes that exceed limit foreach ($toRemove as $child) { $child->parentNode->removeChild($child); } // remove wrapper tags added by DD (doctype, html...) if (version_compare(PHP_VERSION, '5.4.0') < 0) { // http://stackoverflow.com/a/6953808/1058140 $dom->removeChild($dom->firstChild); $dom->replaceChild($dom->firstChild->firstChild->firstChild, $dom->firstChild); return $dom->saveHTML(); } return $dom->saveHTML(); } protected function walk(DomNode $node, $maxLen) { if ($this->reachedLimit) { $this->toRemove[] = $node; } else { // only text nodes should have text, // so do the splitting here if ($node instanceof DomText) { $this->totalLen += $nodeLen = strlen($node->nodeValue); // use mb_strlen / mb_substr for UTF-8 support if ($this->totalLen > $maxLen) { $node->nodeValue = substr($node->nodeValue, 0, $nodeLen - ($this->totalLen - $maxLen)) . '...'; $this->reachedLimit = true; } } // if node has children, walk its child elements if (isset($node->childNodes)) { foreach ($node->childNodes as $child) { $this->walk($child, $maxLen); } } } return $this->toRemove; } } print Html::trim('<p>Lorem ipsum dolor sit amet <a href="very-long-long-prelong-href-that-should-not-be-cut">Quite long link</a> text after link</p>', 35);
Output for 5.6.0 - 5.6.40, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 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 - 8.3.7
<p>Lorem ipsum dolor sit amet <a href="very-long-long-prelong-href-that-should-not-be-cut">Quite lo...</a></p>
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 <p>Lorem ipsum dolor sit amet <a href="very-long-long-prelong-href-that-should-not-be-cut">Quite lo...</a></p>

preferences:
212.31 ms | 402 KiB | 301 Q