Changes between Initial Version and Version 1 of Ticket #9757, comment 180
- Timestamp:
- 07/12/2020 11:44:20 PM (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #9757, comment 180
initial v1 5 5 Guess that's more of a "personal coding habits"? :) 6 6 7 `isset()` is good in some cases, but if you are expecting a value and doing something with it, it's better to `! empty()` instead of running more code, calling functions, etc.7 `isset()` is good in some cases, but if you are expecting a value and doing something with it, it's better to "move on" straight away with `! empty()` instead of running more code, calling functions, etc.