Blogger Information
Blog 17
fans 0
comment 0
visits 12808
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php 常用基础
再见羊肉串儿
Original
477 people have browsed it

php 变量

  • 8 种数据类型(4 种标量类型,2 种复合类型,2 种特殊类型);

  • 标量类型:布尔型,整型,字符串,浮点型;

  • 复合类型:数组(索引数组,关联数组),对象;
  • 特殊类型:null 和 资源类型(resource);

php 全局成员

常量,函数,类,接口

php 常用函数

  • 常用的字符串函数
    1.strtoupper():小写全部转为大写;
    2.strlen():计算字符串长度;
    3.abs():绝对值;
    4.json_encode():将数组转为 json 字符串;
    5.json_decode():json 字符串转为数组;

定界符

  1. <?php
  2. //这样可以避免单引号双引号出错问题,扩这号后面的名字自定义,保证前后一致就行;定界符定义字符串,解析转义符,解析变量;
  3. echo <<<A
  4. <ul class='ceshi'>
  5. <li>heihei</li>
  6. </ul>
  7. A;
  8. ?>

匿名函数和命名函数使用全局变量的方法

  1. <?php
  2. $a = 465;
  3. $b = 789;
  4. /**
  5. * 命名函数调用全局变量
  6. */
  7. function heihei () {
  8. // 下面注释的和用$GLOBALS都可以
  9. // global $a,$b;
  10. return $GLOBALS['a'] + $GLOBALS['b'];
  11. }
  12. echo heihei();
  13. /**
  14. * 匿名函数调用全局变量
  15. */
  16. // 需要用到use
  17. $h = function() use ($a, $b)
  18. {
  19. return $a + $b;
  20. };
  21. echo $h();
  22. ?>
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