我有很多功能可以获取有关本地计算机的信息: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');
答案 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();
}
}