- or download this
$VAR1 = {
'data' => {
...
'fileC' => 10
}
};
- or download this
sub encode
{
...
my @json_arr = JSON::PP->new->encode($href);
return convert_file_to_arr($path,@json_arr);
}
- or download this
sub decode
{
...
%{$href} = %{JSON::PP->new->decode($json_data)};
return 1;
}
- or download this
sub merge_files_and_exec
{
...
decode($path,$data_href);
}
}
- or download this
$VAR1 = {
'data' => {
...
'fileE' => 3
}
};
- or download this
$VAR1 = {
'data' => {
...
'fileE' => 3
}
};