mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-26 12:23:06 +08:00
18 lines
246 B
PHP
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;
|
|
}
|
|
|
|
}
|