isArray JavaScript
Simple JavaScript function that returns true if is an array or false if it’s not ;)
function isArray(obj) { if (obj.constructor.toString().indexOf("Array") == -1) return false; else return true; }
- Concatenate PDF in PHP
- mathCaptcha - Really simple captcha
- Count Words Repetitions in PHP
- Sql query counter
- Check if URL exists and is Online - PHP
Help sharing and Flatter me ;)
