Update rsf.format.php

This commit is contained in:
Namhyeon Go 2019-05-26 02:20:29 +09:00 committed by GitHub
parent 871203fdbd
commit ecf355abb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,6 +14,6 @@ if(!check_function_exists("get_rsf_encoded")) {
$_ks[] = $k;
$_vs[] = make_safe_argument($v);
}
return sprintf("(%s)=>('%s')", implode(",", $_ks), implode("','", $_vs));
return sprintf("('%s')=>(%s)", implode("','", $_vs), implode(",", $_ks));
}
}