Blogger Information
Blog 18
fans 0
comment 0
visits 10830
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP 1.3作业
- 迷舍人
Original
937 people have browsed it

变量名怎么命名:字母和下划线开头,不能以数字开头,区分大小写,变量名。

php数据类型分类 布尔值(真/假) 字符串(true/false) 数值(分为小数和整数)

php变量分大小写 函数不分大小写

变量的创建和引用

  1. //创建和引用
  2. $a = 'it';
  3. $b = 'abcd';
  4. //调用函数
  5. echo $a . '<br>';
  6. echo $a . $b;

变量读取

  1. //单值读取
  2. //回显。没有返回值
  3. echo get_site($a);
  4. echo '<br>';
  5. echo '我的姓名是:' . $a . '我的地址是:' .$b . '<br>';
  6. echo '我的名字第一个字母是:' . $a{0};
  7. echo '<hr>';
  8. //有返回值的,执行成功会返回1
  9. echo print ($a. '和' .$b.'<br>');
  10. echo '<hr>';
  11. //第二个参数true,不是输出 而是返回true
  12. $s = print_r($a , true);
  13. echo $s . '<hr>';
  14. //复合数据
  15. $data = range(1,20,2);
  16. //数组
  17. $ss = print_r($data, true);
  18. echo $ss;
  19. //echo '<pre>'. $ss. '</pre>';
  20. echo '<hr>';
  21. echo $a . '<br>';
  22. echo '<hr>';
  23. var_export($a);
  24. echo '<br>';
  25. echo $a . '<br>';
  26. echo '<pre>'. var_export($data, true). '</pre>';

Correcting teacher:天蓬老师天蓬老师

Correction status:unqualified

Teacher's comments:对照作业要求写
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