dongtun1872 2014-06-19 20:44
浏览 52
已采纳

如何在Phalcon中创建新的注射服务

I'm trying to build a basic "JSON getter" for my Phalcon-based webapp, something like that:

function getJson($url, $assoc=false)
{
$curl = curl_init($url);
$json = curl_exec($curl);
curl_close($curl);
return json_decode($json, $assoc);
}

And of course I would like to make that stuff globally available, possibly as an injectable service. What could be the best way to do that? Should I implement a Phalcon\DI\Injectable? And then, how can I include the new class and feed it to the DI?

Thanks!

  • 写回答

1条回答 默认 最新

  • duanjing9739 2014-06-19 21:00
    关注

    You could extend Phalcon\DI\Injectable but don't have to. A service can be represented by any class. The docs pretty well explain how to work with the dependency injection in general and specifically with Phalcon.

    class JsonService 
    {
        public function getJson($url, $assoc=false)
        {
            $curl = curl_init($url);
            $json = curl_exec($curl);
            curl_close($curl);
            return json_decode($json, $assoc);
        }
    }
    
    $di = new Phalcon\DI();
    
    //Register a "db" service in the container
    $di->setShared('db', function() {
        return new Connection(array(
            "host" => "localhost",
            "username" => "root",
            "password" => "secret",
            "dbname" => "invo"
        ));
    });
    
    //Register a "filter" service in the container
    $di->setShared('filter', function() {
        return new Filter();
    });
    
    // Your json service...
    $di->setShared('jsonService', function() {
        return new JsonService();
    });
    
    // Then later in the app...
    DI::getDefault()->getShared('jsonService')->getJson(…);
    
    // Or if the class where you're accessing the DI extends `Phalcon\DI\Injectable`
    $this->di->getShared('jsonService')->getJson(…);
    

    Just pay attention to get / set vs. getShared / setShared, there are services that may cause problems if created multiple times over and over again (not shared), e.g., take a lot of resources when instantiated. Setting service as shared ensures it's created only once and the instance is reused there after.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同
  • ¥50 如何openEuler 22.03上安装配置drbd
  • ¥20 ING91680C BLE5.3 芯片怎么实现串口收发数据
  • ¥15 无线连接树莓派,无法执行update,如何解决?(相关搜索:软件下载)
  • ¥15 Windows11, backspace, enter, space键失灵