在同一控制器中的函数之间传递变量

时间:2013-10-20 12:09:07

标签: php variables cakephp

class AppointmentsController extends AppController {
public function view($id = null) {
    if (!$this->Appointment->exists($id)) {
        throw new NotFoundException(__('Invalid appointment'));
    }
    $options = array('conditions' => array('Appointment.' . $this->Appointment->primaryKey => $id));
    $this->set('appointment', $this->Appointment->find('first', $options));

    $kk = $this->Appointment->find('first',  array('fields' => 'status', 'conditions' => array('Appointment.id' => $id)));
    $ss = reset($kk);
    $stats = reset($ss);
}
}

我通过从DB获取值来设置$ stats,我想在同一控制器中的另一个函数中使用

然后我想像这样使用

class AppointmentsController extends AppController {
function confirm(){
$stats = 'New';

}
}

3 个答案:

答案 0 :(得分:0)

看到它是同一个类,您是否尝试使用$this->stats而不是局部变量?

答案 1 :(得分:0)

您可以在第一个功能中调用另一个功能,如

$this->confirm($status); // calling confirm function

function confirm($status)
{
 //use status as you want
}

或者您可以将状态设置为全局变量,然后可以在任何函数中访问它。

答案 2 :(得分:0)

我认为,您必须在模型中创建函数,该函数将通过id返回字段的值。

<?php
// model/AppModel.php

public function getFieldById($field='id', $id){
  return $this->field($field, array('id' => $id));
}


// in controller function you can access this like.

$status = $this->Appointment->getFieldById('status', $id); // $id will be appointment id.

?>