Blogger Information
乐作人生
Blog
15
fans
0
comment
0
visits
11126
integral:0
P beans:32
  • List of blog posts
  • JS数组方法、流程控制、json字符串

    1. js数组的常用方法 console.log("-------------数组的添加push()--------------"); let arr = [1, 2, 3]; arr.push("a", "b"); ...

    2020-11-10 15:12 Read 696 comment 0
  • 创建js变量、数据类型

    1.创建js变量 // JS中有变量声明,PHP没有 var username = "朱老师"; let age = 33; // 块级作用域 const gender = "male"; // 常量 ...

    2020-11-06 17:34 Read 895 comment 0
  • composer安装、项目创建、composer自动加载

    1. composer的安装 登录composer官网:https://www.phpcomposer.com/ ,点击下载安装安装前确保已经正确安装了PHP。打开命令行窗口执行php -v查看是否正确输出php版本号运行composer下载命令:p...

    2020-11-02 17:57 Read 1218 comment 0
  • 分页查询、服务容器

    数据表的分页查询

    2020-11-02 12:01 Read 697 comment 0
  • 自动加载文件、文件上传操作

    1. 自动加载文件 loader文件try{// 在try代码块内触发异常 // spl_autoload_register()通过回调自动加载外部文件 spl_autoload_register(function ($class){ ...

    2020-11-03 15:53 Read 806 comment 0
  • __isset()和__unset()访问拦截、数据库操作、__sleep()与__wakeup

    实现isset()和unset()访问拦截操作 //重载:属性访问拦截器// __isset(), __unset()对不可访问的属性进行调用// isset() 函数用于检测变量是否已设置并且非 NULL// unset()删除指定的变量且传回t...

    2020-10-10 17:49 Read 617 comment 0
  • PDO常用操作、trait 、interface、抽象类与interface的区别与联系

    熟悉PDO所有常用方法,并实例演示 数据库配置// 连接参数return [ // 类型 'type' => $type ?? 'mysql', // 默认主机名 'host' => $username ?? 'localhost', ...

    2020-09-17 11:22 Read 715 comment 0
  • mysql面向对象的CURD操作

    1、使用mysqli面向对象,实现常用的CURD操作 连接数据库 // 导入配置文件$config = require '0823-2config.php';extract($config);//extract() 函数从数组中将变量导入到当前的符...

    2020-09-11 13:00 Read 843 comment 0
  • 数组种类、数组遍历、数组函数

    数组的种类与定义与访问方式 //数组分类:索引数组、关联数组、多维数组//1、索引数组:带有数字索引的数组$goods=[0=>'1001',1=>'小米手机',2=>'3000元',3=>'有货'];$goods=['1001','小米手机','...

    2020-09-10 13:04 Read 754 comment 0
  • 变量、常量、函数、字符串

    变量与常量的区别与创建,访问方式 变量 变量是临时存储数据的容器;是实现数据复用的手段;变量名区分大小写;函数不区分大小写。如$username和$userName变量名必须使用$符号开始;不允许使用数字开始;必须使用字母或下划线开始,后面允许...

    2020-09-08 12:47 Read 781 comment 0
  • grid布局

    12列栅格布局: 网站首页html代码

    2020-08-26 23:02 Read 577 comment 0
  • flex三列布局、移动端首页

    flex实现pc端三列布局 /* 初始化 */ * { margin: 0; padding: 0; box-sizing: border-box; } a { text-decoration: none; color: #33...

    2020-08-24 13:31 Read 781 comment 0
  • 盒模型、相对定位、绝对定位、圣杯布局

    盒模型的大小与位置的设置与计算 .container { border: 1px solid #f00; margin-bottom: 20px; } .container .box1 { background-color: #ddd;...

    2020-08-19 00:32 Read 546 comment 0
  • 表格、表单

    表格

    2020-08-11 00:11 Read 587 comment 0
  • html基础知识

    html文档结构 &l...

    2020-08-04 00:09 Read 610 comment 0