1、数组遍历函数(1)快速遍历foreach $user3 = ['id'=>1,'name'=>'Jack','age'=>28,'address'=>'深圳龙华'];foreach($user3 as $key=>$value){ prin...
字符串函数1、md5() 加密 // md5加密$password = '123456';echo md5($password); 2、strtoupper() 字符串转大写 // strtoupper 字符串转大写$str1 = 'abcdefg...
一、分支与循环 分支 $total = 90;switch(true){ case $total60 && $total
一、变量(1) 声明命名规范与js一样,只不过要在前面加 $(2) 查看使用 echo 直接在页面输出结果,只能看到值(3) 查看值和数据类型使用 var_dump(4) 可更新,重新赋值 // !变量// 1、声明$userName = '张三';...
一、vue常用术语(1)引入vue3 CDN (2)vue实例 {{message}} const a...
一、异步请求的学习(1)fetch函数 fetch('http://xhr.test.com/users.php') .then(response => response.json()) ....
一、轮播图的暂停与播放 添加鼠标移入移出事件
一、双色球 css部分 .bt{ width: 13vw; line-height: 4vh; background: coral; text-a...
一、字符串api let str = 'hello world'; // 长度 console.log('-----------长度-----------'); console.log(str....
一、classList对象(1)初始标签内容级样式 .title{ border: 1px solid #ccc; }Hello World! const ...
留言板 css部分 *{ margin: 0; padding: 0; list-style: none; } .messCont{ ...
一、访问器(1)常规属性 let user = { // 常规属性 data:{ name: '张三', age: 20 ...
一、函数的参数与返回值(1) 参数不足要设置默认参数,否则出现NaN let f = (a,b) => a+b; console.log(f(10,20)); console.log(f(10)); (2...
一、常用函数类型(1)命名函数 // 1.命名函数 function firstName(name){ return name; } console.log(firstN...
商品列表 html部分 ------ 你可能还喜欢 ----...