Blogger Information
P粉036614676
Blog
47
fans
0
comment
0
visits
21079
integral:0
P beans:94
  • List of blog posts
  • 连表查询和model

    1.连表查询 使用join或者查询一次,再查询一次 $res = Db::table('course c')->join('sc s','s.Cno' == 'c.Cno')->select()->toArray(); print...

    2022-08-31 21:41 Read 405 comment 0
  • TP数据库操作和请求

    1.数据库操作1.1 in , not in $res = Db::table('course')->where('Cno','not in','3,4,5,6')->select()->toArray(); print_r($re...

    2022-08-31 09:41 Read 391 comment 0
  • TP6配置与数据库操作

    1. TP6框架配置 2.数据库操作2.1增(insert,insertall,insertgetid) $arr = ['Cno' => 8,'Cname' => '数学','Cpno' => 7, 'Ccredit' => 10]; ...

    2022-08-30 08:29 Read 657 comment 0
  • composer的常规用法

    上机练习composer常用指令,深刻理解compser应用场景与引用方法 1.不用composer进行包管理 在文件中需要提供路径名,和命名空间

    2022-08-24 13:52 Read 489 comment 0
  • PHP文件上传

    1.文件操作

    2022-08-22 09:20 Read 637 comment 0
  • PHP连接数据库操作

    1.连接数据库操作PDO:是类的接口,实例化后就可以使用该类的接口了$db = new PDO('mysql:host=localhost;dbname=phpedu','root','901026yk'); 2.插入操作1.索引插入

    2022-08-19 08:30 Read 668 comment 0
  • SQL常用语句

    数据库1.标准语言SQL语句数据查询语言DQL:select; 数据操纵语言DML:update,insert,delete 数据定义语言DDL:create,drop,alter 数据控制语言DCL:grant,revoke 1.数据查询(sele...

    2022-08-17 22:30 Read 604 comment 0
  • 类的扩展和命名空间

    1.类的扩展 __get()__set()__construct()__destruct()__call()__callStatic() class User{ static $min = 10; private $data = [ ...

    2022-08-16 21:59 Read 320 comment 0
  • 文件包含和类

    include, require的区别与联系, 与当前脚本的作用域的关系 2. 预习官方手册中的类与对象的知识 3. 将课堂上演示的类与对象的常用关键字,操作,以及几个魔术方法进行演示 1.文件包含 requirerequire_onceinclu...

    2022-08-16 09:25 Read 344 comment 0
  • PHP数组函数

    1.函数大纲 2.重点函数讲解

    2022-08-14 21:49 Read 363 comment 0
  • 作用域与字面量

    1.作用域1.PHP不支持块作用域:

    2022-08-11 10:06 Read 346 comment 0
  • 分支,循环,流程控制

    实例演示分支与循环, 不要抄源码 2. 实例演示流程控制之模板语法, 自己测试switch1.分支1.1分支if($count > 0){ if($count == 1) { echo '1' . PHP_EOL; } elseif ($c...

    2022-08-10 19:34 Read 273 comment 0
  • php运行原理图

    2022-08-09 09:55 Read 278 comment 0
  • xhr与fetch异步编程

    1.xhr1.1同步和异步 * (一): 同步与异步 * 1. 同步: 顺序执行, 优点: 静态预判结果可控, 缺点: 耗时任务阻塞执行 * 2. 异步: 乱序执行, 优点: 不会阻塞代码,体验好, 缺点: 顺序不可控 ...

    2022-08-02 15:51 Read 699 comment 0
  • JS事件的相关特性以及原理

    1.class对象目标1: 1.改变H1标签的class属性 2.classList对象的添加,判断,替换,删除

    2022-07-28 22:53 Read 311 comment 0