Script Installation Services WordPress Installation Services
php mobile browser check

Check If Viewed Through Mobile

On many occasions, you may want to check if the current visitor is browsing your site through a mobile browser. There are a lot of solutions out there (classes, libraries), but the simplest option has been working fine for me for years.

wordpress-admin-bar-remove

Remove the WordPress Admin Bar

Some developers and admins complain that the new Wordpress admin bar is getting in the way. A few simple lines of code will help you get rid of it quickly.

php function check if website is online

PHP Function to Check If a Website is Online

PHPAcademy provided this wonderful 2-part tutorial on how to code a short function to check if a given website is online or down currently. Similar functionality can be seen at isup.me.

php-array-to-object-convert

How to Convert an Array to an Object?

PHP arrays are cool, but if you are switching to the modern coding standards (OOP) you are probably in need of objects more often. PHP provides a very easy way to change the type of a variable from an array to an object. It’s done via typecasting. Here’s an example:…