mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-29 13:51:37 +08:00
18 lines
254 B
PHP
18 lines
254 B
PHP
<?php
|
|
|
|
namespace App\Transformers;
|
|
|
|
use Phalcon\Mvc\User\Component as UserComponent;
|
|
|
|
class Transformer extends UserComponent
|
|
{
|
|
|
|
public function arrayToObject($array)
|
|
{
|
|
$result = kg_array_object($array);
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|