search
HomeBackend DevelopmentPHP TutorialPHP we learned together in those years (2)_PHP Tutorial
PHP we learned together in those years (2)_PHP TutorialJul 21, 2016 pm 03:19 PM
linuxphpworldtwoexiststudyYearstartusNowofcodingEnter

Now we enter the Linux world and start our PHP coding journey. Various problems will occur during coding, and the time to solve the problems is also the moment when we transform from a novice.
Every programming language will start by practicing variables. PHP is a type of embedded scripting language. Of course, you can also start from the data type of syntax. This section mainly starts with PHP data types and data variables.
Data types of PHP language:
(1) Boolean value, [true, false] Question: There are only two definitions of Boolean value: true, false. PHP defined variables agree to be represented by $ , such as $shop=false;
(2) The integers supported by integers [decimal, octal, hexadecimal] are related to the platform. For PHP5 and previous versions, +2 raised to the 31st power is supported, and PHP6 was introduced 63 times Square integer data. Decimal and hexadecimal are basically converted according to mathematical rules.
(3) Floating-point data, including single-precision floating point [float], double-precision floating point [double], real number [real number], which can contain decimal parts and is used to represent currency, distance, and simple Other representations that cannot be satisfied by integers, such as defining a number $money=1.0093, which defaults to a floating point type value.
(4) Single quote string, that is, use single quotes to enclose the text you want to use. For example: 'I am Siron.'
Q: If I want to write This's book is highly enjoyable. How should I write it?
Note on the simultaneous use of single and double quotes in PHP:
Double quote fields will be interpreted by the compiler and then output through HTML code.
Single quote fields will not be interpreted by the compiler and will be output directly.
For example:

Copy code The code is as follows:

$bookname="Lua Programming Guide Chinese Version";
//Double quotation marks-----Output Lua Programming Guide Chinese Version
echo "$bookname";
//Single quotation marks----Output $bookname
echo '$bookname';
//Example of cross output, pay attention to escaping the single quotes'
echo "My book's name is $bookname";
?>

(5) Double quotation mark string, that is, use double quotation marks to enclose the text you want to use, but it is more complicated. Variable substitution can be used within double quotes. For example: "I am Siron."
(6) Array type. Arrays can exist in the form of key-value pairs and support multi-dimensional arrays. Brief definition example
Copy code The code is as follows:

//Define a one-bit array, Contains three elements in total
$books[0]="C# Guide";
$books[1]="Besieged City";
$books[2]="Morning Flowers Picked at Dusk";
?>


(7) The object type is a conforming data type, which will be introduced in detail later in object-oriented programming.
$
blengder =new Application;
(8) resource type
$file=fopen("1.txt",r)//This is the resource type
(9) PHP Is it a weakly typed language? Is it possible to force type conversion?
Regarding PHP’s forced type conversion (that is, converting one data type to another type), it can be achieved by adding the forced data type in front of the variable. But please pay attention to the conversion process , when high-precision floating point numbers are converted to low-precision values, the data of the variable is lost, so it must be used with caution. The types of forced conversion are (bool) (array) (int) (integer) (object) (real) (double) (float) ( string). PHP type definitions are very loose, so sometimes the reference variable is automatically converted to the appropriate type based on the environment system in which it is located.
Copy code The code is as follows:

$total=5; //integer
$count="25";//String
$total+="$count";//$total=30 (automatically converted to an integer)
?>

(10) What built-in functions are used related to types?
PHP built-in uses the gettype() function to return the variable type specified by Var, and uses settype() to convert var to the type specified by Type. That is: gettype() This function is used to get the type of the variable. The returned type string may be one of the following strings: integer, double, string, array, object, unknown type. Syntax: string gettype(mixed var);
settype() This function is used to configure or convert variable types. Returns true value on success, false value otherwise. The parameter var is the original variable name, and the parameter type is one of the following types: integer, double, string, array and object. Syntax: int settype(string var, string type);

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/325236.htmlTechArticleNow we enter the Linux world and start our PHP coding journey. Various problems will occur during coding. The time when solving problems is also the time when you transform from a novice. Every program...
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
2023年最佳的15个JavaScript日历和事件日历脚本2023年最佳的15个JavaScript日历和事件日历脚本Aug 30, 2023 pm 06:05 PM

您可能想在网站上使用日历脚本的原因有很多。其中最常见的是用于列出和安排事件。另一种用途是提供一个链接来列出特定日期发布的所有博客文章或新闻事件。在某些情况下,您可能只是在寻找日期和时间范围选择器。考虑到所有这些用例,我创建了CodeCanyon上一些最流行的JavaScript日历脚本的列表。CodeCanyon上最畅销的JavaScript日历和事件日历脚本获取这些脚本之一并将JavaScript日历添加到您的网站或应用程序。这些脚本以低廉的价格提供了许多功能。如果您购买其中一款,您还可以获得

从零开始学Spring Cloud从零开始学Spring CloudJun 22, 2023 am 08:11 AM

作为一名Java开发者,学习和使用Spring框架已经是一项必不可少的技能。而随着云计算和微服务的盛行,学习和使用SpringCloud成为了另一个必须要掌握的技能。SpringCloud是一个基于SpringBoot的用于快速构建分布式系统的开发工具集。它为开发者提供了一系列的组件,包括服务注册与发现、配置中心、负载均衡和断路器等,使得开发者在构建微

2020年后不能使用Windows 7吗?2020年后不能使用Windows 7吗?Dec 26, 2023 am 10:43 AM

最近很多win7用户看到了微软发布的新闻,在2020年1月14日后win7将停止更新安全维护,系统将不会再提供安全向的更新,国内的正版win7用户就会比较担心,不能用了吗,其实还能使用的,完全不需要担心。win72020年不能用了吗答:还能继续正常使用,2020年只是微软不支持安全更新了,但其实国内的话不是正版系统没必要纠结,基本上不会影响使用。win7和win10使用走向:1、Windows7已坐稳十年的霸主地位,但根据Netmarketshare统计机构数据,在2019年7月份Windows

中电信人工智能总经理何忠江:2024年将发布超自然语音2.0中电信人工智能总经理何忠江:2024年将发布超自然语音2.0Nov 10, 2023 pm 08:21 PM

11月10日下午,中电信人工智能总经理何忠江在人工智能与数据产业发展合作论坛上,对通用大模型的产品和思路进行了解读何忠江首先分享了对通用人工智能的看法,他认为,通用人工智能是指能像人一样能看、能听、会思考,而能看需要视觉技术,能听需要语音技术,将视觉信息与语音信息采集到大脑之后,大脑对其进行加工判断,提供决策思路,通用大模型发挥的便是大脑的作用。当今的海量数据、先进算法、坚实算力也将推动大模型规模化发展。阐述完基本看法后,何忠江从中国电信星辰语义大模型、中国电信星辰多模态大模型进行了详细讲解。中

2030年,贝恩公司研究:元宇宙市场价值或将达到9000亿美元2030年,贝恩公司研究:元宇宙市场价值或将达到9000亿美元Aug 22, 2023 am 11:09 AM

重写:重新编写/虚拟现实陀螺仪根据贝恩咨询公司(Bain&Company)最新发布的研究报告“TakingtheHyperboleOutoftheMetaverse”,预计到2030年,元宇宙的市值有望达到9000亿美元,尽管在接下来的5到10年中,它可能仍处于早期发展(种子孵化)阶段根据贝恩的报告,随着消费和企业应用对身临其境体验的重视增加,协作性也变得更强,元宇宙不太可能作为独立的平台出现。目前,使用XR技术的行业包括但不限于娱乐、工业制造、医疗保健和教育培训图源:贝恩咨询公司贝恩报

轻松学会win7怎么还原系统轻松学会win7怎么还原系统Jul 09, 2023 pm 07:25 PM

win7系统自带有备份还原系统的功能,如果之前有给win7系统备份的话,当电脑出现系统故障的时候,我们可以尝试通过win7还原系统修复。那么win7怎么还原系统呢?下面小编就教下大家如何还原win7系统。具体的步骤如下:1、开机在进入Windows系统启动画面之前按下F8键,然后出现系统启动菜单,选择安全模式登陆即可进入。2、进入安全模式之后,点击“开始”→“所有程序”→“附件”→“系统工具”→“系统还原”。3、最后只要选择最近手动设置过的还原点以及其他自动的还原点都可以,但是最好下一步之前点击

学习PHP中的PHPUNIT框架学习PHP中的PHPUNIT框架Jun 22, 2023 am 09:48 AM

随着Web应用程序的需求越来越高,PHP技术在开发领域中变得越来越重要。在PHP开发方面,测试是一个必要的步骤,它可以帮助开发者确保他们创建的代码在各种情况下都可靠和实用。在PHP中,一个流行的测试框架是PHPUnit。PHPUnit是一个基于Junit的测试框架,其目的是创建高质量、可维护和可重复的代码。下面是一些学习使用PHPUnit框架的基础知识和步骤

2020年还能重装win7系统吗2020年还能重装win7系统吗Jan 09, 2024 pm 08:37 PM

就在2020年初,微软公司正式终止了对win7操作系统的更新支持,那么在这之后我们还能重装win7系统吗,其实是可以的,因为win7只是不再更新了,不代表它不能正常安装和使用。2020年还能重装win7系统吗答:能重装微软公司只是终止了win7的更新支持,不代表不能安装使用。win7系统重装教程:1、首先联网下载一个一键重装软件,下载后打开它。2、打开后,在“在线装机”里验机并进入“下一步”3、然后进入“win7”系统,挑选想要重装的系统版本。4、下面可以为你的c盘文件进行备份,不再这些文件夹里

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 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

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

SecLists

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.