Quick actions

cmd+k|ctrl+k

Navigation

Languages

PHP String Formatter

Snippet info

Language

Php

Visibility

public

Author

kykurniawan

Created

2022-06-21T04:08:13.976946Z

Updated

2023-08-07T08:35:27.788591Z

<?php

function format($format, $value, $separator=' ')
{
    $temp=[];
    foreach ($format as $cluster){
        $formattedCluster=substr($value,0,strlen($cluster));
        $value=substr($value,strlen($cluster));
        array_push($temp, $formattedCluster);
    }
    return join($separator, $temp);
}

var_dump(format(['xx', 'xxx', 'xxx','xxx','xx'], '6282222222222'));
INFO