reasonableframework/helper/rsf.format.php

9 lines
200 B
PHP
Raw Normal View History

2019-05-25 17:02:45 +00:00
<?php
// rsf.format.php
if(!check_function_exists("get_rsf_encoded")) {
function get_rsf_encoded($data) {
return sprint("(%s)=>('%s')", array_keys($data), implode("','", $data));
}
}