Blogger Information
Blog 14
fans 0
comment 0
visits 11503
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP字符运算、类型转换和系统函数
暮光薄凉
Original
753 people have browsed it
1、运算符
运算符 含义
+
-
*
/
% 取余
2、赋值运算
运算符 含义
+= 加等于
-= 减等于
*= 乘等于
/= 除等于
%= 余等于
.= 连接
3、强制类型转换

强制类型转换在变量前加数据类型,
例:数字类型转换为字符串
(string)1;

类型 含义
string 字符串
float 浮点型
bool 布尔值
array 数组
object 对象
4、获取字符串其中的字符
  1. $set = "abcd";
  2. $set[2];//获取第二个字符
  3. //一个汉字为三个字符
5、函数

函数分为:系统函数,自定义函数
1.系统函数

系统函数 作用
unset(变量) 删除变量
strtoupper(变量) 把字符串转化为大写字母
strtolower(变量) 把字符串转化为小写字母
strlen() 获取字符串长度
trim() 去除字符串两边的空格
ltrim() 去除字符串左边的空格
rtrim() 去除字符串右边的空格
…$a 收集所有参数

2.自定义函数
关键字:function
返回值:return

  1. function 函数名(参数){
  2. 代码块...
  3. return
  4. }
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post