PageRenderTime 67ms CodeModel.GetById 37ms RepoModel.GetById 1ms app.codeStats 0ms

/app/_posts/2009-02-04-phps-empty-in-place-of-isset.markdown

https://github.com/johnantoni/red91.com
Markdown | 17 lines | 13 code | 4 blank | 0 comment | 0 complexity | e4e40d17dd660f8e55066d1b23e04fa6 MD5 | raw file
  1. ---
  2. layout: post
  3. title: php's empty() in place of isset()
  4. category: php
  5. ---
  6. this thing was winding me up like a bad movie last night, thanks Jesse Skinner for your article; cheered me up bigtime ;-)
  7. [Using PHP's empty() Instead of isset() and count()](http://www.thefutureoftheweb.com/blog/using-php-empty-instead-of-isset-count)
  8. more..
  9. isset() - Determine whether a variable is set
  10. unset() - Unset a given variable
  11. array_key_exists() - Checks if the given key or index exists in the array
  12. count() - Count all elements in an array, or properties in an object
  13. strlen() - Get string length