search
HomeBackend DevelopmentPHP TutorialIt'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

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1077890.htmlTechArticleIt’s Friday la la la la -LAMP PHP’s OOP, -lampoop hi Friday~~ 1. LAMP Configuration Complete Part 5. LAMP Configuration Environment Optimization 5.4 Working Principle of Virtual Host Apache virtual host. virtual-h...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php文件如何在手机上打开php文件如何在手机上打开Nov 13, 2023 am 11:08 AM

要在手机上打开php文件,需要在手机上搭建一个能够运行php的服务器环境,并将php文件上传到服务器上。然后,在手机上的浏览器中输入服务器的IP地址或域名,加上php文件的路径,即可打开php文件并查看其内容。

如何处理PHP文件路径大小写错误并生成相应的报错信息如何处理PHP文件路径大小写错误并生成相应的报错信息Aug 08, 2023 pm 09:45 PM

如何处理PHP文件路径大小写错误并生成相应的报错信息在开发PHP程序的过程中,我们经常会遇到文件路径大小写错误的问题。由于Windows和Linux系统对文件路径的大小写处理方式不同,当程序在开发环境中使用Windows系统测试通过后,在部署到Linux服务器上时可能会导致路径错误。为了解决这个问题,我们可以通过一些方法来处理文件路径的大

如何才能打开php文件如何才能打开php文件Sep 01, 2023 am 11:53 AM

打开php文件步骤:1、选择文本编辑器;2、在选择的文本编辑器中,创建一个新的文件,并将其保存为.php文件;3、在创建的PHP文件中,编写PHP代码;4、要在本地计算机上运行PHP文件,需要设置一个服务器环境;5、安装服务器环境后,需要将PHP文件放入服务器目录中;6、一旦将PHP文件放入服务器目录中,就可以通过浏览器来运行它。

.php文件中可包含几方面内容.php文件中可包含几方面内容Mar 06, 2023 pm 05:32 PM

php文件中可包含的内容:1、起始标签“<?php”和结束标签“?>”,所有PHP代码都必须写在这对标签的里面;2、分号“;”,是PHP语句的分隔符,也代表着代码执行的指令;3、注释,有单行注释“//”、多行注释“/* */”、Shell注释“#”三种风格注释;4、换行符,可加强代码的可读性;5、代码段(如函数等)。

怎么打开php文件怎么打开php文件Jan 24, 2024 pm 04:12 PM

打开php文件的工具:1、Notepad++;2、Sublime Text;3、Visual Studio Code;4、Eclipse;5、XAMPP。详细介绍:1、Notepad++,这是一个免费的文本编辑器,支持多种编程语言,包括PHP,它具有语法高亮和代码折叠等功能,可以更轻松地阅读和编辑PHP代码;2、Sublime Text,这是一款功能强大的文本编辑器等等。

PHP文件可包含哪些代码PHP文件可包含哪些代码Aug 01, 2023 pm 01:34 PM

PHP文件可包含的代码:1、PHP代码,用来完成各种服务器端的任务;2、HTML代码,用来定义网页的结构和布局;3、CSS代码,用来定义网页的样式;4、JavaScript代码,用来实现在网页中进行各种动态交互的功能;5、SQL代码,用来操作数据库;6、文件包含代码,可以将代码进行模块化;7、第三方库和框架,可以快速构建功能丰富的应用程序。

运行PHP程序的前提条件是什么?运行PHP程序的前提条件是什么?Mar 26, 2024 pm 03:45 PM

标题:运行PHP程序的前提条件及示例PHP是一种广泛应用于Web开发的脚本语言,许多网站都是通过PHP来运行其动态内容。要成功运行PHP程序,必须满足一些前提条件。下面将介绍运行PHP程序的前提条件,并提供具体的代码示例。服务器环境首先,PHP程序需要在支持PHP语言的服务器环境中才能正常运行。最常见的服务器环境是Apache服务器,并且需要安装PHP解释器

如何处理PHP文件编码错误并生成相应的报错信息如何处理PHP文件编码错误并生成相应的报错信息Aug 06, 2023 pm 02:09 PM

如何处理PHP文件编码错误并生成相应的报错信息在开发PHP应用程序时,经常会遇到文件编码错误的问题。这些错误可能会导致程序无法正常运行,或者在用户面前展示乱码。为了更好地处理这些错误并生成相应的报错信息,我们可以采取一些常见的解决方案。确定文件编码首先,我们需要确定文件的编码格式。常见的编码格式有UTF-8、GBK等。可以通过文本编辑器的“另存为”功能来查看

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.