mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-07-12 19:39:10 +08:00
18 lines
225 B
PHP
18 lines
225 B
PHP
<?php
|
|
|
|
namespace App\Builders;
|
|
|
|
use Phalcon\Mvc\User\Component;
|
|
|
|
class Builder extends Component
|
|
{
|
|
|
|
public function arrayToObject($array)
|
|
{
|
|
$result = kg_array_object($array);
|
|
|
|
return $result;
|
|
}
|
|
|
|
}
|