3v4l.org

run code in 300+ PHP versions simultaneously
<?php function getIPStringForFullDNS($ip, $class) { $limits = array('A' => -3, 'B' => -2, 'C' => -1, 'D' => 0); $limit = $limits[$class]; $ip = implode('.', explode('.', $ip, $limit)); $ip .= str_repeat('.*', abs($limit)); return $ip; } echo getIPStringForFullDNS('158.58.169.254', 'A') . '<br>'; echo getIPStringForFullDNS('158.58.169.254', 'B') . '<br>'; echo getIPStringForFullDNS('158.58.169.254', 'C') . '<br>'; echo getIPStringForFullDNS('158.58.169.254', 'D') . '<br>';
Output for git.master, git.master_jit, rfc.property-hooks
158.*.*.*<br>158.58.*.*<br>158.58.169.*<br>158.58.169.254<br>

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:
38.91 ms | 401 KiB | 8 Q