查找返回False的方法

时间:2015-04-30 10:51:27

标签: php cakephp-2.4

我正在尝试在我的脚本中执行查找,但我相信我的情况正在返回false。我正在尝试执行查找并拉出与$data变量中给定值匹配的所有记录。我试图将BranchLicense.RegionCode$data进行比较,但没有运气。我也尝试将它与_Session['Auth']['User']['region_code']进行比较。 $data变量返回正确的值,但脚本不返回正确的记录。我在这做错了什么?这是我的代码。

//echo '<pre>'; print_r($_SESSION); echo '</pre>';
//$this->loadModel('AuthAcl.Users');

$data = $_SESSION['Auth']['User']['region_code'];

//$data = $this->Users->find('all');

$new = $this->BranchLicense->find('all', array(
'conditions' => array('BranchLicense.RegionCode' == $data)));
die(debug($new));

$this->layout = 'default';

//$this->set('branchLicenses', $this->BranchLicense->find('all', array(
//'conditions' => array('BranchLicense.RegionCode' === '$data'))));

1 个答案:

答案 0 :(得分:0)

尝试如下 -

   $new = $this->BranchLicense->find('all', array(
    'conditions' => array('BranchLicense.RegionCode' => $data)));
    die(debug($new));