我试图给出条件,但它无法给出适当的结果。
喜欢
if($this->data['EmployeeExprienceDetail']['file_name']['type'] != 'image/jpeg')
这个条件是否合适......指导我
感谢
答案 0 :(得分:2)
检查传回内容的最佳方法是输出要验证的内容。
这会将值打印到屏幕
echo $this->data['EmployeeExprienceDetail']['file_name']['type']."<br />";
这会将(if数组)值打印到屏幕
echo "<pre>".print_r($this->data['EmployeeExprienceDetail']['file_name']['type'],true)."</pre><br />";
这会将原始值打印到屏幕
echo var_dump($this->data['EmployeeExprienceDetail']['file_name']['type']);
这会将值打印到屏幕上,对于显示空格很有用,因为在比较之前可能需要修剪该值
echo "|".$this->data['EmployeeExprienceDetail']['file_name']['type']."|<br />";