/ Published in: JavaScript
URL: http://javascript.ru/php/empty
Expand |
Embed | Plain Text
function empty( mixed_var ) { return ( mixed_var === "" || mixed_var === 0 || mixed_var === "0" || mixed_var === null || mixed_var === false || ( is_array(mixed_var) && mixed_var.length === 0 ) ); }
You need to login to post a comment.
