Hi I'm using CakePHP and I'm wondering do you guys puts isset() or !empty() around all of your variables in the views? Or should I depend on the data validation? What would be the suggested solution?
|
feedback
|
|
I think you should know the differences between
The following values are considered to be empty:
On the other hand | ||||
|
feedback
|
|
Personally, I use | |||
|
feedback
|
|
That's a pretty broad question. It depends on whether you can expect the variable to always be present or if there might reasonably be cases where it isn't. If, according to your program structure, a certain variable should always be present at this point in the program, you should not check for its existence. This way you'll get a nice warning when something screws up and you know something went wrong. If, OTOH, you expect the variable to sometimes be absent, you need to check for this case to gracefully catch the error that would otherwise result. Furthermore, the choice between | ||||
|
feedback
|
|
To answer the question, no.
| |||
|
feedback
|
|
when it is a choice between this or that when it is not is set, it is empty <=> when it is not empty, it is set but when it is set, it may be empty... an may not.......... so this is the differnece | |||
|
feedback
|
|
When you do something like
Empty values also don't equate to true, so you can do things like:
In short I only use I rarely use | ||||
|
feedback
|