You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
276 B

  1. <?php
  2. class FileHelper
  3. {
  4. public static function toString($object)
  5. {
  6. $data = array();
  7. foreach ($object as $attribute_name => $attribute_value) {
  8. $data[$attribute_name] = $attribute_value;
  9. }
  10. return json_encode($data);
  11. }
  12. }