用户
 找回密码
 入住 CI 中国社区
搜索
查看: 1403|回复: 1
收起左侧

[HELP] 【求助】权限管理、节点管理。 提示错误!

[复制链接]
发表于 2016-3-3 10:29:54 | 显示全部楼层 |阅读模式
CI框架

以下是相关代码段

NodeService.php
PHP复制代码
/**
                  * 获取节点信息
                 */

        public function getNodes()
        {
 
                $nodes = $this->Adminnode_model->queryAllBySort("admin_node",array("weight"=>"desc"));
                $this->tidyNode($nodes->result(),$data);
                return $data;
               
        }
        /**
         * 将读取出来的所有节点整理
         * @param array $nodelist 节点数组
         * @param arrat $data 空数组,存放整理后的数据
         * @param int   $pid  父id
         * @param int   $forlevel 递归深度
         */

        private function tidyNode(&$nodelist,&$data=0,$pid=0,$forlevel=0){
                $forlevel++;
                foreach($nodelist as $node){
                        if($node->pid == $pid){
                                $node->forlevel = $forlevel;
                                $data[] = $node ;
                                $this->tidyNode($nodelist,$data,$node->id,$forlevel);
                        }
                }
        }      
复制代码



AdminNode.php
PHP复制代码
/**
                * 打开节点管理首页
               */

        public function index()
        {
                $nodes=$this->NodeService->getNodes();
 
                $this->by_smarty->assign('nodes',$nodes);
                $this->by_smarty->view('admin/auth/node');
        }
复制代码




错误提示信息:

A PHP Error was encountered

Severity: Runtime Notice

Message: Only variables should be passed by reference

Filename: auth/NodeService.php

Line Number: 21

Backtrace:

File: C:\wamp\www\betterus\application\service\admin\auth\NodeService.php
Line: 21
Function: _error_handler

File: C:\wamp\www\betterus\application\controllers\admin\auth\AdminNode.php
Line: 21
Function: getNodes

File: C:\wamp\www\betterus\index.php
Line: 295
Function: require_once
发表于 2016-3-3 11:54:53 | 显示全部楼层
$this 是呼叫當前 class 內的所有 function
CI 似乎沒有提供 Controller 間互相呼叫
你可以考慮寫在 Model

本版积分规则