Files
image/FileHelper.php

14 lines
299 B
PHP
Raw Normal View History

<?php
2014-06-02 20:30:44 +04:00
namespace dimti\Image;
class FileHelper
{
public static function toString($object)
{
$data = array();
foreach ($object as $attribute_name => $attribute_value) {
$data[$attribute_name] = $attribute_value;
}
return json_encode($data);
}
}