我正在尝试在我的脚本中执行查找,但我相信我的情况正在返回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'))));
答案 0 :(得分:0)
尝试如下 -
$new = $this->BranchLicense->find('all', array(
'conditions' => array('BranchLicense.RegionCode' => $data)));
die(debug($new));