search
Homephp教程PHP开发Excerpted from the PHP Manual [1] – Basics to note

Tianya recently used his free time to read the manual completely, and will post some things on the blog that he thinks we can easily overlook. Not much to say, the first article.

Note: About line breaks Although the actual significance of line breaks in HTML is not great, proper use of line breaks can make HTML code readable and beautiful. PHP will automatically remove a newline after the end character ?> when outputting. This function is mainly designed for embedding multiple pieces of PHP code in a page or containing PHP files without substantial output. At the same time, it also caused some confusion. If a newline is output after the PHP terminator ?>, you can add a space after it, or add a newline in the last echo/print statement.

Note: The end tag of the PHP code segment at the end of the file is not required. In some cases, it is better to omit it when using include() or require(), so that unexpected white spaces will not appear at the end of the file, and it will still be there afterwards. Response headers can be output. It's also convenient when using output buffering, so you don't see the unwanted white spaces generated by include files.

Note: Unlike the other two syntaxes, variables and escape sequences appearing in single-quoted strings will not be replaced by the value of the variable.
【Tianya Note】In other words, variables inside single quotes will not be parsed and will be output as strings.

Characters in a string can be accessed and modified by specifying the zero-based offset of the desired character using curly braces after the string.

$str = 'Hello World!';

echo $str{1}; // Output e

?>

Note: The unset() function allows you to unset a key in an array. Be aware that the array will not be reindexed.

You should always put quotes around array indices expressed as strings. For example, use $foo['bar'] instead of $foo[bar]. But why is $foo[bar] wrong? You may have seen the following syntax in old scripts:




$foo[bar] = 'enemy';
echo $foo[bar];
?>


This is how it works Wrong, but works fine. So why is it wrong? The reason is that there is an undefined constant (bar) in this code instead of a string ('bar' - note the quotes), and PHP may define this constant later, unfortunately you have the same name in your code. It works because PHP automatically converts a bare string (a string without quotes and not corresponding to any known symbol) into a normal string whose value is that bare string. For example, if there is no constant defined as bar, PHP will replace it with ‘bar’ and use that.
Note: Again, in a double-quoted string, it is legal to unquote the index so "$foo[bar]" is legal.

The allowed casts are:




(int), (integer) - converted to integer type
(bool), (boolean) - converted to Boolean type
(float), (double), (real) - Convert to floating point type
(string) - Convert to string
(array) - Convert to array
(object) - Convert to object


Note that spaces and tabs are allowed within brackets

Note : HTML forms do not pass integers, floats or booleans, they only pass strings. To check whether a string is a number, you can use the is_numeric() function.
Note: When the variable $x is not defined, usage such as if ($x) will result in an E_NOTICE level error. Therefore, you can consider using the empty() or isset() function to initialize variables.

Note: Although ! has higher precedence than =, PHP still allows expressions like the following: if (!$a = foo()), in this case the output of foo() is assigned to $a.

The above is excerpted from the PHP manual [1] - the basic knowledge that needs to be paid attention to. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!


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
学习MySQL必看!详细讲解SQL语句基础知识学习MySQL必看!详细讲解SQL语句基础知识Jun 15, 2023 pm 09:00 PM

MySQL是一个开源的关系型数据库管理系统,被广泛地应用于Web应用程序的开发和数据存储。学习MySQL的SQL语言对于数据管理员和开发者来说是非常必要的。SQL语言是MySQL中的核心部分,因此在学习MySQL之前,你需要对SQL语言有充分的了解,本文旨在为你详细讲解SQL语句基础知识,让你一步步了解SQL语句。SQL是结构化查询语言的简称,用于在关系型数

从头学习:掌握Go语言的基础知识从头学习:掌握Go语言的基础知识Feb 01, 2024 am 08:45 AM

从零开始:学习Go语言的基础知识简介Go语言,又称Golang,是一种由Google开发的开源编程语言。它于2009年发布,并迅速成为一种流行的语言,尤其是在Web开发、分布式系统和云计算等领域。Go语言以其简洁、高效、并发性强等特点而著称。基本语法1.变量和常量在Go语言中,变量和常量都是类型化的。变量可以存储数据,而常量则不能改变。变量的声明格式为:v

Go语言编程入门指南:基础知识与实际应用速成Go语言编程入门指南:基础知识与实际应用速成Jan 23, 2024 am 09:31 AM

快速入门Go语言编程:基础知识与实践指南Go语言作为一门新兴的编程语言,因其简洁、高效和并发性而备受开发者的青睐。无论你是初学者还是有一定编程经验的开发者,本文将带你快速入门Go语言编程,并提供一些实践指南和具体代码示例。一、安装Go语言环境要开始使用Go语言进行编程,首先需要在你的计算机上安装Go语言环境。你可以从Go官方网站(https://golang

学习canvas,需要了解哪些基本概念?学习canvas,需要了解哪些基本概念?Jan 17, 2024 am 10:37 AM

学习canvas需要掌握哪些基础知识?随着现代Web技术的发展,使用HTML5中的标签进行绘图成为一种常见的方式。Canvas是一种用于绘制图形、动画和其他图像的HTML元素,它可以利用JavaScript进行操作和控制。如果你想要学习canvas并掌握其基础知识,下面将为你详细介绍。HTML和CSS基础知识:在学习canvas之

Yii框架的一些基础知识Yii框架的一些基础知识Jun 21, 2023 pm 07:07 PM

Yii是一款流行的面向对象PHP框架,它的全称是“YesItIs”,表示“是的,它就是这样的”。它的设计目标是高效、快速、安全和易于使用,因此被广泛应用于大型Web应用程序的开发中。在这篇文章中,我们将介绍Yii框架的一些基础知识,帮助新手更好地了解这个框架。MVC架构Yii框架采用了基于MVC(Model-View-Controller)的设计模式,这

深入探讨Go语言程序的基础知识深入探讨Go语言程序的基础知识Mar 05, 2024 am 08:15 AM

《Go语言程序基础知识深入探讨:具体代码示例解析》Go语言作为一种快速、高效的编程语言,越来越受到程序员和开发者的青睐。在学习和掌握Go语言的过程中,深入了解其基础知识是至关重要的。本文将从变量、数据类型、流程控制以及函数等方面展开深入探讨,同时结合具体的代码示例来帮助读者更好地理解和掌握Go语言的基础知识。变量和数据类型在Go语言中,变量的声明和初始化非常

网络安全的基础知识:保护您的Linux服务器网络安全的基础知识:保护您的Linux服务器Sep 09, 2023 am 10:22 AM

网络安全的基础知识:保护您的Linux服务器随着互联网的迅猛发展,保护服务器安全成为了一项至关重要的任务。其中,Linux服务器在网络安全中扮演着重要的角色。本文将带您了解一些基础知识和技术,来加强您的Linux服务器的安全防护。使用强密码强密码是保护服务器安全的基本步骤之一。一个强密码应该包括大小写字母、数字和特殊字符,长度不少于8个字符。更好的做法是定期

JavaScript的面向对象基础知识JavaScript的面向对象基础知识Sep 02, 2023 am 11:21 AM

近年来,JavaScript越来越受欢迎,部分原因是开发了一些库,使那些尚未完全掌握核心语言的人更容易创建JavaScript应用程序/效果。虽然在过去,人们普遍认为JavaScript是一种基础语言,而且非常“草率”,没有真正的基础;但现在情况已不再如此,尤其是随着大规模Web应用程序和JSON(JavaScript对象表示法)等“适应”的引入。JavaScript可以拥有面向对象语言所提供的所有功能,尽管需要付出一些超出本文讨论范围的额外工作。让我们创建一个对象functionmyObjec

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 Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor