其实写这些php的文章是很基础的,而且跳跃过了很多语法点,因为C语言和C++学的比较好,很多类似,只是写出了不同的地方,方便学习。分享出来也方便和我同样情况的人学,如果是什么都没学过的,不懂数据结构,不懂算法,不懂C,最好不要看我写的,而是因该去买本比较好的参考书来参考。
02.1PHP中的常量的定义
define("CONSTANT_NAME",value[,case_senstivitty]);
其中“CONSTANt_NAME”是常量,是一个字符串,value即为值(为任何合法的php表达式,包含对象和数组)。而最后一个由字面意思就可知道其意思为区分大小写。默认为区分值为true,反之为false。常量和C一样,一般写成大写。
02.2运算符
php包含三种运算符,一元、二元、三元运算符。php类型转变原理和C类似,向存得多的方向转换,下面是具体规则。
转换方向。不能逆向,否则数据丢失!
1.向存得最多的类型转换,即表示范围最大的。
2.字符串向整型转换,不够则向real型转换。
3.整型向real类型转换
而boolean型,Null型,Resource型也和整型类似,其实可以理解为本质就是与整数有关系,至于原因你去看内核实现代码就知道。
Boolean:False = 0,True = 1
Null = 0;
Resource = The resource’s #(id)
02.2.1说说二元运算符
首先php中比较特殊的二元运算符是 串联运算符(.) 其它的和C语言一样。
其次所有的数学运算符只计算数字操作符,遇到其它类型的按照前面讲的转换。
下面重点介绍串联运算符(.)
串联运算符只做两个字符串的串联,也就是所这个运算符只处理字符串,所以任何非字符串的操作数都会被首先转换成字符串。这其实就像C++中的重载运算符,你首先要规定好重载运算符所运算的类型,而且强制转换。
eg:
$year = 2013;
print "The year is" . $year;
则会把$year在内部转换成字符串"2000"再与前面的字符串“The year is”串联起来。
02.2.2引用赋值运算符。
$name = "Judy";
$name_alias = & $name;
$name_alias = "Jonathan";
print $name;
则输出Jonathan。
由此我们可以得出php中所谓的引用和C++中的一样,其实其本质还是基于C的指针。也就是相当与给变量另外取一个别名。
当通过引用方式返回函数的值,需用引用符号了说明。
$retval = & function_return_by_reference();
02.3比较运算符(只讲 ==,===,!==)
==
检查两个操作数是否相等!,如需类型转换即,规则是 1 == “1”返回true,1 == 1也返回true。
===
全等与==类似,但是类型必须一样,不执行自动类型转换所以1 === “1”逻辑值为false
!==和===相反,与!=区别就是但是类型必须一样,不执行自动类型转换。

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 English version
Recommended: Win version, supports code prompts!

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

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

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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
