


It's Friday, la la la la - LAMP PHP's OOP, - lampoop_PHP tutorial
It’s Friday la la la la -LAMP PHP’s OOP, -lampoop
hi
It’s Friday~~
1. LAMP configuration completion
5. LAMP configuration environment optimization
5.4 Working Principle of Virtual Host
Apache virtual host. virtual-host
Use different domain names to access different directories - manually simulate dns
This can be achieved by modifying the host file. Specifically, it is the host address and domain name
Review
liang@liang-andy:~$ sudo apt-get install apache2
liang@liang-andy:~$ sudo apt-get install php5
Then load/check php5.load, the php module that implements apache2 operation (The interaction between LAMP is the startup/connection of the module)
liang@liang-andy:~$ cat /etc/apache2/mods-enabled/php5.load
liang@liang-andy:~$ sudo apt-get install mysql-server
sudo apt-get install apache2 php5 mysql-server php5-mysql
liang@liang-andy:~$ sudo service mysql restart
liang@liang-andy:~$ sudo service apache2 restart
----Create phpinfo probe
Install vim first
sudo apt-get install vim
Then switch to the www folder of php and use the cd command
cd /var/www/html (version 14.4)
Then create a php file here
sudo vim info.php
Write php code
echo mysql_connect('localhost','root','hanhan123') ? 'Hoho' : 'WTF';
phpinfo();
Then esc key , enter: wq to save and exit
http://192.168.1.100/info.php Browser input verification result
End of review
5.5 Install phpmyadmin
--
apt-get command
sudo apt-get install phpmyadmin
sudo ln -s /usr/share/phpmyadmin/ /var/www/pma
6. Understanding server clusters
There are many famous giant server clusters at home and abroad.
Used to handle large batches of requests simultaneously
----------------------------------
2. OOP programming in PHP
4. Advanced Practice of OOP
Program preparation
date_default_timezone_set("PRC");
/**
* 1. The definition of a class starts with the class keyword, followed by the name of the class. Class names are usually named with the first letter of each word capitalized.
* 2. Define the attributes of the class
* 3. Define the methods of the class
* 4. Instantiate the object of the class
* 5. Use the attributes and methods of the object
*/
class NbaPlayer
{
// Definition of class attributes
public $name="Jordan";//Define attributes
public $height="198cm";
public $weight="98kg";
public $team="Bull";
public $ playerNumber="23";
// Definition of class method
public function run() {
echo "Runningn";
}
public function jump(){
echo "Jumpingn";
}
public function dribble(){
echo "Dribblingn";
}
public function shoot() {
echo "Shootingn";
}
public function dunk(){
echo "Dunkingn";
}
public function pass(){
echo "Passingn" ;
}
}
/**
* 1. Use the new keyword when instantiating a class into an object, followed by new followed by the name of the class and a pair of parentheses.
* 2. Using objects can perform assignment operations just like using other values
*/
$jordan = new NbaPlayer();
// The syntax used to access the properties of an object is the -> symbol, followed by the name of the property
echo $ jordan->name."n";
// The syntax used to call a method of an object is the -> symbol, followed by the name of the method and a pair of brackets
$jordan->run() ;
$jordan->pass();
?>
4.1 Inheritance
That is, similar parts of objects can be used in multiple places - avoiding code redundancy and improving development efficiency.
Advantages: It is defined in the parent class and does not need to be defined again in the subclass - high efficiency; externally, the performance is consistent (the parent class is the same); rewrite to modify the subclass.
Give me a chestnut
class Human{
public $name;
public $height;
public $weight;
public function eat($food){
echo $this-> name."'s eating".$food."n";
}
}
Humans as parent class, and nba players as subclasses
class NbaPlayer extends Human{
Try to call the function in the parent class directly through the subclass
$jordan->eat("apple");
Output
Jordan's eating apple
No problem! Subclasses can directly call the attributes and methods of the parent class! ! (Methods and properties defined in the parent class can be directly accessed on objects of the subclass)
After all, from its meaning, a subclass is an extension of the parent class.
In addition, Attributes in the parent class can be accessed in the subclass (in fact, a simple understanding is that all subclasses are objects greater than or equal to the parent class, imagine a Venn diagram)
For class inheritance, use extends, can only follow one "dad" - the single inheritance principle of PHP
4.2 Access Control
All properties and methods have access permission options - choose who can access it
public: public, anywhere
protected: protected, by itself and its subclasses
private: private, can only be accessed by yourself
Give me a private example
In the Nbaplayer subclass, a new definition is added
private $age="44";
public function getAge(){
echo $this->name."'s age is ".$this->age;
}
//Try to call private, directly and through the internal public function
//$jordan->age;
$jordan->getAge();
Then, Regarding protected, the scope is tightly limited to the parent class and the subclass. In other words, the curly brackets will become invalid after the definition of the subclass!
4.3 Static members
can be simply understood as a constant (?)
static
bu xiang xie le

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

To open a php file on a mobile phone, you need to set up a server environment that can run php on the mobile phone and upload the php file to the server. Then, enter the IP address or domain name of the server, plus the path to the php file, into the browser on your phone to open the php file and view its contents.

How to deal with case errors in PHP file paths and generate corresponding error messages. In the process of developing PHP programs, we often encounter the problem of case errors in file paths. Since Windows and Linux systems handle file path case differently, when the program passes the test using the Windows system in the development environment, it may cause path errors when it is deployed to the Linux server. In order to solve this problem, we can use some methods to deal with the large file path

Steps to open a php file: 1. Select a text editor; 2. Create a new file in the selected text editor and save it as a .php file; 3. Write PHP code in the created PHP file; 4. To run PHP files on your local computer, you need to set up a server environment; 5. After installing the server environment, you need to put the PHP files into the server directory; 6. Once you put the PHP files into the server directory, you can browse server to run it.

What can be included in the php file: 1. The starting tag "<?php" and the ending tag "?>", all PHP code must be written inside this pair of tags; 2. The semicolon ";" is a PHP statement The delimiter also represents the instruction for code execution; 3. Comments, including single-line comments "//", multi-line comments "/* */", and Shell comments "#"; 4. Line breaks, which can Enhance the readability of the code; 5. Code segments (such as functions, etc.).

Tools for opening php files: 1. Notepad++; 2. Sublime Text; 3. Visual Studio Code; 4. Eclipse; 5. XAMPP. Detailed introduction: 1. Notepad++, which is a free text editor that supports multiple programming languages, including PHP. It has functions such as syntax highlighting and code folding, making it easier to read and edit PHP code; 2. Sublime Text , a powerful text editor and more.

PHP files can contain code: 1. PHP code, used to complete various server-side tasks; 2. HTML code, used to define the structure and layout of the web page; 3. CSS code, used to define the style of the web page; 4. JavaScript Code, used to implement various dynamic interaction functions in web pages; 5. SQL code, used to operate the database; 6. The file contains code, which can modularize the code; 7. Third-party libraries and frameworks, which can be quickly constructed Feature-rich application.

Title: Prerequisites and examples for running PHP programs. PHP is a scripting language widely used in web development. Many websites use PHP to run their dynamic content. To successfully run a PHP program, some prerequisites must be met. The following will introduce the prerequisites for running PHP programs and provide specific code examples. Server environment First of all, PHP programs need to run normally in a server environment that supports the PHP language. The most common server environment is an Apache server and requires a PHP interpreter to be installed

How to handle PHP file encoding errors and generate corresponding error messages. When developing PHP applications, file encoding errors are often encountered. These errors may cause the program to fail to run properly or display garbled code in front of the user. In order to better handle these errors and generate corresponding error messages, we can take some common solutions. Determine the file encoding First, we need to determine the encoding format of the file. Common encoding formats include UTF-8, GBK, etc. You can view it through the "Save As" function of your text editor.
