


1. Simple syntax rules (delimit variable names with curly braces, applicable to all versions of PHP):
$a ='flower';
echo "She received some $as";// Invalid; the letter s will be regarded as a valid variable name to form an element, but the variable here is $a
echo "She received some ${a}s";// Valid
echo "She received some {$a}s";// Valid; recommended usage
What we want to express is" "She received some flowers", the word "flower" in the context should be in the plural form (that is, S should be added after it), but if the variable is not defined in any way, the first echo situation will occur. Obviously we want the output to be $a rather than $as. So how do we usually process this output?
echo "She received some $a"."s";
echo " She received some ".$a."s";// These two customary ways of writing should be less concise and clear than the way of writing with curly brackets, right?
Note: No matter whether { appears before or after $, curly braces will be regarded as delimiting symbols only when they are immediately adjacent. Do not add spaces between them, otherwise they will be treated as ordinary curly braces
echo "She received some { $a}s";// The output result is: She received some { flower} s
2. Complex syntax rules (delimit expressions with braces, etc., used with PHP4+):
echo "Valid writing method: {$arr[4][3]}";// Valid; define multi-dimensional array
echo "Valid writing method: {$arr[' foo'][3]}"; // Valid; when using a multi-dimensional array in a string, be sure to enclose it in parentheses
echo "Valid writing: {$this->width}00" ;// Valid; if not defined, it will become $this->width00
echo "Effective writing: {$this->value[3]->name}";// Valid; This example demonstrates the valid writing method of defining the chain call
echo ": $name: {${$name}}";// is valid; the effect demonstrated by this example is actually a variable variable
echo " Valid writing method: {${getName()}}";// Valid; this example demonstrates how to use the return value of the function as a variable name
echo " to effectively issue: {${$this->getName( )}}";// Valid; this example demonstrates using the return value of the function as a variable name
Note 1: echo "Is it valid to write like this: {getName()}"; the output result is :'Is it valid to write like this:
{getName()}'. Because there is no $ in it, the curly braces will not be used as delimiters
Note 2: echo "Is it valid to write like this: {$arr[foo][3]}"; Let's do it first before answering this question An experiment:
error_reporting(E_ALL);
$arr = array('a ','b','c','d'=>'e');
echo "This is $arr[d]";// We find that there is no problem in writing like this, then we like the following How to write it like this?
echo $arr[d];
produced this error:
Notice: Use of undefined constant d - assumed 'd'
Note: Use of undefined The constant d should probably be 'd'
So if we modify the code as follows
error_reporting(E_ALL);
$arr = array('a','b','c','d'=>'e');
define('f',' d');
echo $arr[f];
We found that there is no problem this time. It can be seen that there is no problem if the index of the array in the string is not enclosed in single quotes, but if this writing method does not appear in the string, an error will be reported, and for {$arr[foo][3]} in the string Parsing is based on non-string parsing. Therefore, it is wrong to only add curly braces to delimit the array in the string without adding single quotes to the index. Because the program interprets unquoted indexes as constants, an error occurs. The correct way of writing should be:
echo "Effective way of writing: {$arr['foo'][3]}";
A special reminder: echo "This is $arr[d ]";Although this writing method can be parsed by the program, it is limited to the case where the array is a one-dimensional array. The rigorous writing method should be: echo "This is {$arr['d']}"; My student once argued with me on this point. He said: Since the previous writing method can produce results, why must we use it? What about the latter way of writing? Then, let’s continue to modify the previous code
error_reporting(E_ALL);
$arr = array('a','b','c','d'=>array('e'=>'f')) ;
echo "This is $arr[d][e]";
Can this still be parsed correctly? I just want to tell you that adding curly braces is strictly necessary. Of course, if you are not my student, then I can’t control that much...
Note 3:
error_reporting(E_ALL);
$arr = array('a','b','c','d');
echo "This is {$ arr[2]}
";
echo "This is {$arr['2']}
";
Execute the above code . The result is the same, why is this? I can only tell you that PHP is a weakly typed language. As for what a weakly typed language is, I won’t say more here. Go Google it yourself. Having said so much, where are the specific applications that best reflect the advantages of these syntactic rules? ----SQL statement
// Example 1:
$SQL1 =" select * from table where id={$_GET['id']}";// Example 2:
$SQL2 ="select * from table where id={$this->id}";
OK, we’re done playing with curly braces here.

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

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

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

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

判断方法: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

SublimeText3 Chinese version
Chinese version, very easy to use

Dreamweaver Mac version
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

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

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.
