3v4l.org

run code in 300+ PHP versions simultaneously
<?php $dist = "1"; $mapno = "5F"; $parcel = "3.1"; $subparcel = ""; $parid = ""; if(strlen($dist) == 1){ $dist = '0' . $dist; } $arr = explode('.',$parcel); if (count($arr) > 1) { $parcel = $arr[0]; $subparcel = $arr[1]; } if(strlen($subparcel) == 1){ $subparcel = '0' . $subparcel; } $spcs = " "; if (strlen($mapno) == 1) { $spc = " "; } if (strlen($mapno) == 2){ $spc = " "; } $parid = $dist . $spc . str_pad($mapno, 4, '0', STR_PAD_RIGHT) . str_pad($parcel, 4, '0', STR_PAD_RIGHT) . str_pad($subparcel, 6, '0', STR_PAD_RIGHT); echo $parid; ?>
Output for git.master, git.master_jit, rfc.property-hooks
01 5F003000010000

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