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') . "\n"; echo getIPStringForFullDNS('158.58.169.254', 'B') . "\n"; echo getIPStringForFullDNS('158.58.169.254', 'C') . "\n"; echo getIPStringForFullDNS('158.58.169.254', 'D') . "\n";
Output for git.master, git.master_jit, rfc.property-hooks
158.*.*.* 158.58.*.* 158.58.169.* 158.58.169.254

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