1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-26 12:23:06 +08:00
2020-01-30 16:51:10 +08:00

18 lines
246 B
PHP

<?php
namespace App\Builders;
use Phalcon\Mvc\User\Component as UserComponent;
class Builder extends UserComponent
{
public function arrayToObject($array)
{
$result = kg_array_object($array);
return $result;
}
}