Summary of PHP basic knowledge that is helpful for novices
I just started learning PHP, please give me some advice in the future:
Learning the backend is a long process. I just learned PHP and summarized a small part. Some people may ask why you copy and share W3C stuff?
My answer is: W3C is all about introductory basics, which are very meaningful, and many people don’t want to go to W3C to learn because there are too many things.
Everyone is willing to read blogs or check information to learn, so I share it with some beginners like me to learn. I hope it will be helpful to everyone!
PHP learning syntax:
1. echo ---------Output statement
echo "我的第一段 PHP 脚本!";
2. PHP script starts with
<?php // 此处是 PHP 代码 ?>
3. Example:
<!DOCTYPE html> <html> <body> <h1 id="我的第一张-nbsp-PHP-nbsp-页面">我的第一张 PHP 页面</h1> <?php echo "Hello World!"; ?> </body> </html>
PHP statements end with a semicolon (;). The closing tag of a PHP code block also automatically indicates a semicolon (so you don't have to use a semicolon on the last line of a PHP code block).
4. Comments in PHP code will not be read and executed as a program. Its only purpose is to be read by code editors.
PHP有三种注释:(//或者#或者/* */) // 这是单行注释 # 这也是单行注释 /* 这是多行注释块 它横跨了 多行 */
5. In PHP, all user-defined functions, classes and keywords (such as if, else, echo, etc.) are not case-sensitive.
Example:
<!DOCTYPE html> <html> <body> <?php ECHO "Hello World!<br>"; echo "Hello World!<br>"; EcHo "Hello World!<br>"; ?> </body> </html>
6. However, in PHP, all variables are case-sensitive.
Example:
<!DOCTYPE html> <html> <body> <?php $color="red"; echo "My car is " . $color . "<br>"; echo "My house is " . $COLOR . "<br>"; echo "My boat is " . $coLOR . "<br>"; ?> </body> </html>
7. Variables are containers for storing information:
<?php $x=5; $y=6; $z=$x+$y; echo $z; ?>
Description: $x, $y, $z represent three different variables. Finally, output the value of $z
8. PHP variable rules:
Variables start with the $ symbol, followed by the name of the variable
Variable names must begin with a letter or underscore
Variable names cannot begin with numbers
Variable names can only contain alphanumeric characters and underscores (A-z, 0 -9 and _)
Variable names are case-sensitive ($y and $Y are two different variables)
PHP variable names are case-sensitive!
9. $txt="Hello world!";--------If the value you assign to the variable is text, please surround the value with quotation marks.
PHP automatically converts the variable to the correct data type based on its value.
10. The scope of a variable refers to the part of the script where the variable can be referenced/used.
PHP has three different variable scopes:
local (local)
global (global)
static
11. Local and Global Scope
#Variables declared outside the function have Global scope and can only be accessed outside the function.
Variables declared inside a function have LOCAL scope and can only be accessed inside the function.
Example:
<?php $x=5; // 全局作用域 function myTest()-----------实现函数,用于下面的函数调用 { $y=10; // 局部作用域 echo "<p>测试函数内部的变量:</p>"; echo "变量 x 是:$x"; echo "<br>"; echo "变量 y 是:$x"; } ----------大括号里面创建的变量属于局部变量 myTest();----------函数调用 echo "<p>测试函数之外的变量:</p>"; echo "变量 x 是:$x"; echo "<br>";-------换行符 echo "变量 y 是:$x"; ?>
12. The global keyword is used to access global variables within a function.
To do this, use the global keyword in front of the variable (inside the function):
Example:
<?php $x=5; $y=10; function myTest() { global $x,$y; $y=$x+$y; } myTest(); echo $y; // 输出 15 ?>
global $x,$y; ----Equivalent to----- $GLOBALS['y']=$GLOBALS['x'] $GLOBALS['y'];
13. Usually, when the function After completion/execution all variables are deleted. However, sometimes I need to not delete a local variable. Achieving this will require further work.
To accomplish this, use the static keyword when you first declare the variable:
Example:
<?php function myTest() { static $x=0; echo $x; $x++; } myTest(); myTest(); myTest(); ?>
The variable is still a local variable of the function.
14. The difference between echo and print:
echo - can output more than one string
print - can only output one character string, and always returns 1
15. echo command to display strings and variables
Example:
<?php $txt1="Learn PHP"; $txt2="W3School.com.cn"; $cars=array("Volvo","BMW","SAAB"); echo $txt1; echo "<br>"; echo "Study PHP at $txt2"; echo "My car is a {$cars[0]}"; ?>
16.A string in PHP can be any text within quotation marks. You can use single or double quotes to output
Example:
<?php $x = "Hello world!"; echo $x; echo "<br>"; $x = 'Hello world!'; echo $x; ?>
17. Integers are numbers without decimals.
Floating point numbers are numbers with a decimal point or exponent.
Logic is true or false.
PHP var_dump() will return the data type and value of the variable:
Example:
<?php $x = 5985; var_dump($x); echo "<br>"; $x = -345; // 负数 var_dump($x); echo "<br>"; $x = 0x8C; // 十六进制数 var_dump($x); echo "<br>"; $x = 047; // 八进制数 var_dump($x); ?>
18. Array in a variable Store multiple values.
Example:
<?php $cars=array("Volvo","BMW","SAAB"); var_dump($cars); ?>
19. Objects are data types that store data and information about how to process the data.
In PHP, objects must be declared explicitly.
First we must declare the class of the object. For this we use the class keyword. A class is a structure containing properties and methods.
Then we define the data type in the object class and then use this data type in the instance of that class:
Instance:
<?php class Car { var $color; function Car($color="green") { $this->color = $color; } function what_color() { return $this->color; } } ?>
Thank you everyone for reading, I hope you will benefit a lot.
Original link: https://blog.csdn.net/u013808667/article/details/51669990
Recommended tutorial: "PHP Tutorial"
The above is the detailed content of A summary of PHP basics for beginners. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


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

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

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),

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
