如何使用yii -extension - runaction

时间:2014-11-18 13:25:48

标签: yii

我有很多功能可以获取有关本地计算机的信息:Mac地址,IP地址,操作系统等等。它们超过正常时间。

我试图使用runactions扩展,但它没有工作,我可能会遗漏一些东西(我不知道在哪里必须使用ERunActions :: touchUrl)。如果有人试过这个扩展,我需要帮助。

这个调用mycontroller中的函数的动作:

 public function actionCreate()
{
      if (ERunActions::runBackground())
    {

$mac = $this->getMac();
$ipcomp = $this->getIpcomp();
$oscomp = $this->getOS();
$speed_intertnet =$this-> getSpeafterte();
$ram_size =$this-> getRamsize();
$used_ram =$this-> getUsedram();


}

我用过:

Yii::import('ext.runactions.components.ERunActions'); 

1 个答案:

答案 0 :(得分:0)

嗯,我不确定这是不是答案,但我注意到你错过了关闭"}"。

public function actionCreate()
{
    if (ERunActions::runBackground())
    {
        $mac = $this->getMac();
        $ipcomp = $this->getIpcomp();
        $oscomp = $this->getOS();
        $speed_intertnet =$this-> getSpeafterte();
        $ram_size =$this-> getRamsize();
        $used_ram =$this-> getUsedram();
    }
}