i
PHP Variables
PHP Data Types
PHP Echo & Print
PHP Strings
PHP Numbers
PHP Constants
PHP Operators
PHP if...else...elseif Statements
Switch Statement
PHP Loops
PHP Arrays
Superglobals
PHP Coding Standards
PHP Form Handling
PHP Form Validation
PHP URLs Validation
PHP Form Required Validation
Complete Form Example
PHP File Functions Open/Read
PHP File Create/Write
PHP File Upload
PHP Cookies Handling
PHP Session Handling
PHP filter_var() Function
PHP Validation Filters
PHP Sanitization Filters
Using Filters
Filters Advanced
JSON
PHP Date and Time
MySQL Database
MySQL Connect
MySQL Commands-Creating a Table
MySQL Commands-Inserting The data
MySQL Commands-Prepared Statement
MySQL Commands-Selecting The Data
MySQL Commands-Where and Order By
MySQL Commands-Deleting And Updating The Data
PHP-OOP Introduction
PHP-Classes/Objects
PHP-Constructor/Destructor
PHP-Access Modifiers
PHP-Inheritance
PHP-Inheritance and Protected Access Modifier
PHP-Overriding Inherited Methods
PHP-Final keyword
PHP-Abstract Classes
PHP-Constants
PHP-Traits
PHP-Static Methods and Properties
Introduction to Functions
Defining A function
Returning Values From A Function
Dynamic Function Calls
Variable Scope
Understanding Arguments Or Parameters
Testing For A Function Existence
Returning Multiple Values From A Function
Making practical Use By Building Code Libraries For Code Re-usability
Using Include() And Require()
Access modifiers are used to limit the access of the properties and methods of a class. They control the properties and methods and specify where they can be used or accessed. There are three types of access modifiers in OOP.
1. Public – It is a default access modifier and the properties and methods can be accessed from anywhere in the script.
2. Protected – You can access the properties and methods only within the class or the classes derived from that class where this access modifier is mentioned.
3. Private – It specifies the properties and methods can only be accessed within the class.
class Car {
public $name;
protected $color;
private $price;
}
$Ferrari = new Car();
$Ferrari ->name = Ferrari; // Public property can be accessed outside class, so it works.
$Ferrari->color = 'Red'; // A protected property cannot be accessed outside class, Error
$Ferrari->price = '9000000'; // Private property cannot be accessed outside class, Error
?>
Don't miss out!