PHP object-oriented examples_PHP tutorial
PHP object-oriented example
This article is mainly based on code, and its main function is to understand PHP's object-oriented interface (interface) and memos through examples.
To define an interface, use the interface keyword instead of the class keyword;
Constants can be defined in an interface, but member properties and member methods cannot be defined. This is different from abstract classes (abstract classes can be defined)
The methods in the interface are all abstract methods, but they are not modified with the abstract keyword and have no entity content
interface usb{
function connect();//Link USB
function quit();//Exit USB
interface chapai{
const DIANYA = '220v';
function charu();//Insert
function bachu(); // Pull out
}
Take three different electronic devices as an example: different devices implement USB interfaces in different ways, and thus implement different actions
Digital camera: plug it into the computer to pop up the picture browser U-Shield: install the driver, open the browser Mobile phone: charge
class shouji implements usb,chapai{ //A class can implement multiple interfaces
function connetc(){
echo 'Charging mobile phone, display phone content';
}
function quit(){
echo "Stop charging the phone, exit";
}
function charu(){ //Method to implement the power strip interface
echo "Mobile phone passes ".self::DIANYA."Voltage charging, plug-in charging";
}
function bachu(){
echo "Power off the phone, unplug it and leave".self::DIANYA."Voltage plug strip";
}
}
class xiangji implements usb{
function connetc(){
echo "Camera plugged into USB, display pictures";
}
function quit(){
echo "Camera pulled out";
}
}
class pc{
function usbConnect($usb){ //Pass in different electronic devices, get the object of the device and then call the link method of this electronic device
$obj = new $usb();
$obj->connect();
}
function usbQuit($usb){ //Same as above, pass in different devices and call the exit method of the corresponding device
$obj = new $usb();
$obj->quit();
}
}
$apple = new pc();
$apple->usbConnetc('shouji'); //new a computer object, and when passed to the mobile phone, the method of connecting the mobile phone to USB will be called
The above computer category can be understood as:
When the phone is connected to the computer via USB, the phone's method will be called; when the camera is connected to the computer via USB, the camera's method will be called

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

JSON (JavaScriptObjectNotation) is a lightweight data exchange format that has become a common format for data exchange between web applications. PHP's json_encode() function can convert an array or object into a JSON string. This article will introduce how to use PHP's json_encode() function, including syntax, parameters, return values, and specific examples. Syntax The syntax of the json_encode() function is as follows: st

Here's how to convert a MySQL query result array into an object: Create an empty object array. Loop through the resulting array and create a new object for each row. Use a foreach loop to assign the key-value pairs of each row to the corresponding properties of the new object. Adds a new object to the object array. Close the database connection.

Use Python's __contains__() function to define the containment operation of an object. Python is a concise and powerful programming language that provides many powerful features to handle various types of data. One of them is to implement the containment operation of objects by defining the __contains__() function. This article will introduce how to use the __contains__() function to define the containment operation of an object, and give some sample code. The __contains__() function is Pytho

The Request object in PHP is an object used to handle HTTP requests sent by the client to the server. Through the Request object, we can obtain the client's request information, such as request method, request header information, request parameters, etc., so as to process and respond to the request. In PHP, you can use global variables such as $_REQUEST, $_GET, $_POST, etc. to obtain requested information, but these variables are not objects, but arrays. In order to process request information more flexibly and conveniently, you can

Title: Using Python's __le__() function to define a less than or equal comparison of two objects In Python, we can define comparison operations between objects by using special methods. One of them is the __le__() function, which is used to define less than or equal comparisons. The __le__() function is a magic method in Python and is a special function used to implement the "less than or equal" operation. When we compare two objects using the less than or equal operator (<=), Python

In PHP, an array is an ordered sequence, and elements are accessed by index; an object is an entity with properties and methods, created through the new keyword. Array access is via index, object access is via properties/methods. Array values are passed and object references are passed.

The relationship between the number of Oracle instances and database performance Oracle database is one of the well-known relational database management systems in the industry and is widely used in enterprise-level data storage and management. In Oracle database, instance is a very important concept. Instance refers to the running environment of Oracle database in memory. Each instance has an independent memory structure and background process, which is used to process user requests and manage database operations. The number of instances has an important impact on the performance and stability of Oracle database.

In C++, there are three points to note when a function returns an object: The life cycle of the object is managed by the caller to prevent memory leaks. Avoid dangling pointers and ensure the object remains valid after the function returns by dynamically allocating memory or returning the object itself. The compiler may optimize copy generation of the returned object to improve performance, but if the object is passed by value semantics, no copy generation is required.
