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.

13 lines
299 B

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