问题发生在 if 条件下
我试图给出条件,但它不能给出适当的结果。
这样
if($this->data['EmployeeExprienceDetail']['file_name']['type'] != 'image/jpeg')
的情况是否可以...指导我,
谢谢
I am tring to give condition, but it cant give appropriate result.
like
if($this->data['EmployeeExprienceDetail']['file_name']['type'] != 'image/jpeg')
is this condition is ok or not...guide me
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
检查传回的内容以输出您想要验证的内容的最佳方法。
这会将值打印到屏幕
这将把(如果是数组)值打印到屏幕
这将把原始值打印到屏幕
这将把值打印到屏幕,这对于显示空白很有用,因为您可能需要在比较之前修剪该值
Best way to check what is being passed back it to output what you want to validate against.
This will print the value to the screen
This will print the (if array) value to the screen
This will print the raw value(s) to the screen
This will print the value to the screen, useful for displaying whitespace as you might need to trim the value before comparing it