3v4l.org

run code in 300+ PHP versions simultaneously
<?php $aryParam = array(); $userid="sondang"; $ipaddress="10.0.0.1"; $type="OK"; $action="rename"; $folder1="test.txt"; $folder2="test2.txt"; $aryParam[] = $userid; $aryParam[] = $ipaddress; $aryParam[] = $type; $aryParam[] = $action; $path = "startia/abc/test.txt"; //ObjName $objname = $path; $len = mb_strlen($path); if($len > 0 && mb_substr($objname, 0, 2) == '//'){ $objname = mb_substr($objname, 2); } if($len > 0 && mb_substr($objname, 0, 1) == '/'){ $objname = mb_substr($objname, 1); } $objname = "admin".'/'.$objname; $aryParam[] = $objname; //Comment $foldernames = mb_split("/", $objname); $topfolder = $foldernames[0]; $comment = $userid.'|'.$ipaddress.'|'.$topfolder.'|'.$action.'|'.$type; if($action == 'rename'){ $comment .= '|'.$folder1.'|'.$folder2; }else{ //mkdir, rmdir $len = mb_strlen($topfolder); $without_top = mb_substr($objname, $len); $len = mb_strlen($without_top); if($len > 0 && mb_substr($without_top, 0, 1) == '/'){ $without_top = mb_substr($without_top, 1); } $comment .= '|'.$without_top; } $aryParam[] = $comment; print_r($aryParam);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [0] => sondang [1] => 10.0.0.1 [2] => OK [3] => rename [4] => admin/startia/abc/test.txt [5] => sondang|10.0.0.1|admin|rename|OK|test.txt|test2.txt )

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