Pages
Categories
- Artwork (1)
- Computers (24)
- Building a PC (1)
- Firefox (1)
- Javascript (2)
- LAMP (8)
- Linux (3)
- Ubuntu (1)
- PHP (18)
- Security (5)
- Web Development (18)
- Music (1)
- Uncategorized (1)
- Video Games (2)
Category Archives: PHP
Why I stopped using array_key_exists over isset
When dealing with arrays, the difference between the two is small enough to be considered negligible to some. Basically, isset($arr['key']) will only return true if the key is set and not empty, whereas array_key_exists(‘key’, $arr) will return true if the … Continue reading
Posted in PHP, Web Development
Leave a comment