摘要:
php单双引号 单引号只解析\和‘的转移,其他原样输出 双引号解析变量,以及转义符(\n,\t,\r,\\,\$,\") “.”拼接字符串 php改变字符串大小写 1、Ucfirst 将字符串的首字母转换为大写 2、Lcfirst 将字符串的首字母转换为小写 3、Ucwords 将字符串中每个单词的 阅读全文
摘要:
php检查数组 1、in_array($need,$array,[,$strict=false])检查$array中是否有$need,若$strict为true,则严格检查数据类型 2、implode($oper,$array)将$array中元素以$oper为接点,拼接成字符串并返回 3、coun 阅读全文
摘要:
1、use增强 以thinkphp5.0为例 namespace app\home\controller;use think\{Loader,Controller,Captcha,Request}; 2、匿名类 Generator 加强 Closure::call() define可定义数组常量 函 阅读全文
摘要:
类中可以定义:变量、常量、方法、静态变量、静态方法 类中修饰符:public、private、protected 访问方式:(1)$this,类实例只能访问public变量方法,类本身可访问所有变量方法以及父类public、protected变量方法 (2)parent::,仅限类本身使用,可访问父 阅读全文