What is WordPress? WordPress is a CMS (Content Management System). It is free and Open source. It can either be downloaded to the user’s system or users can use WordPress.com to host their website. WordPress can also act as a backend platform that can host websites of different genres. Be it a blog, an e-commerce,
Terminal Commands For Processes There are two commands available in Linux to track running processes. These two commands are Top and Ps. Using top: using ps: Command Description PID process ID TTY terminal type TIME total time the process has been running CMD name of the command that launches the process Details for PS command To kill the
PHP Static Keyword Static methods can be called without creating the class of the object. Basically creating class properties of methods with static makes them accessible without instantiation of the class. NOTE: Before PHP 8.0.0, calling non-static methods statically was deprecated We cannot access static properties as non-static means by creating their objects. Class Abstraction
Module: Programming LanguagesTopics: HTML & CSS, PHP & MYSQL and JavaScript PHP Classes and Object Php includes OOP concepts as well some of them are Class Abstraction, Object Inheritance, and more. Object Inheritance Just like we see the importance of Interheretance in other languages like cpp. PHP also uses these principles in its object class.