1,函数 var_dump();返回数据类型和值

$x=123;

var_dump($x);//输出结果是 (int 123)

$x=array("a1","b12","c123");

var_dump($x);

//输出 

array

0=>string 'a1' (length=2)

1=>string 'b12'(length=3)

2=>string 'c123'(length=4)


2,函数strlen();返回长度;

echo strlen("hello world!");//输出 值12


3,strpos();函数用于检索字符串内指定的字符或文本,找不到返回false

echo strpos("hello world!","world");//输出值6


4,define() 

设置常量,它使用三个参数:

首个参数定义常量的名称

第二个参数定义常量的值

可选的第三个参数规定常量名是否对大小写敏感。默认是 false。 

define("Test","Welcome to zhengzhou!" ,true);//对大小写不敏感

define("Test1","Welcome to zhengzhou!",false);//对大小写敏感

echo test."<br>";//对大小写不敏感  也可以(Test)

echo Test1;     //对大小写敏感  (test1错误)