mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
16 lines
197 B
PHP
16 lines
197 B
PHP
<?php
|
|
|
|
namespace App\Builders;
|
|
|
|
use Phalcon\Mvc\User\Component;
|
|
|
|
class Builder extends Component
|
|
{
|
|
|
|
public function arrayToObject($array)
|
|
{
|
|
return kg_array_object($array);
|
|
}
|
|
|
|
}
|