上一页 1 ··· 4 5 6 7 8 9 10 下一页
摘要: 2. 以下哪个SQL语句是正确的( d )A:insert into users (‘p001’,’张三’,’男’); B:create table (Code int primary key); C:update users Code=’p002’ where Code=’p001’; D:sel 阅读全文
posted @ 2016-12-16 15:29 F4ntasy 阅读(311) 评论(0) 推荐(0) 编辑
摘要: //1.单例模式//目的:为了控制对象的数量(只能够有一个,相当于类的计划生育)//做法//1.将类的构造函数做成私有的//2.在类里面做了一个公有的函数来造对象//3.将该函数变为静态的//4.在函数里面加控制 class Ren{ public $name; //成员变量用来存储该对象 stat 阅读全文
posted @ 2016-12-16 14:51 F4ntasy 阅读(134) 评论(0) 推荐(0) 编辑
摘要: //2.继承//1.父类//2.子类//子类可以继承父类的一切//重写:override//特点:单继承,一个子类只能有一个父类,一个父类可以派生多个子类 /*class Ren{ public $name; function Say() { echo $this->name."正在讲话"; }} 阅读全文
posted @ 2016-12-12 15:39 F4ntasy 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 面向对象 1.类(由众多对象中抽象出来的) 2.对象(一切皆对象,由类实例化出来的)。 类: 求圆的面积 面向过程的方式 1.将圆抽象为一个类 2.实例化对象 class Qiu { var $banjing; function Biaomianji() { return 4*3.14*$this- 阅读全文
posted @ 2016-12-11 16:53 F4ntasy 阅读(143) 评论(0) 推荐(0) 编辑
摘要: php函数 函数名,参数列表,函数体 php时弱类型语言返回类型可以没有function 函数名(){} 1.简单函数四要素:返回类型,函数名,参数列表,函数体 function Show(){ echo "hello";} Show(); 2.有返回值的函数function Show(){ ret 阅读全文
posted @ 2016-12-09 16:32 F4ntasy 阅读(135) 评论(0) 推荐(0) 编辑
摘要: <?php //var_dump(empty($a)); //判断变量是否为空//var_dump(isset($a)); //判断变量是否定义//$a = 10;//unset($a); //删除变量//var_dump(isset($a)); //&代表变量的地址/*$a = 10;$b = & 阅读全文
posted @ 2016-12-08 16:15 F4ntasy 阅读(97) 评论(0) 推荐(0) 编辑
摘要: <?php //单行注释/* 多行注释*/ //弱类型语言//var a = 10;/*$a=10;$b = "hello";var_dump($a);$a="world";var_dump($a);*/ //$a = 10;//$a = (string)$a; //强制转换a的类型为字符串//se 阅读全文
posted @ 2016-12-08 11:44 F4ntasy 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 简单查询select * from 表名; 注意:*代表所有); 查询指定列 select 列名,列名 from 表名 修改结果集的列名select 列名 as'',列名 as'' from 表名 条件查询select * from 表名 where 条件 多条件查询select * from 表名 阅读全文
posted @ 2016-12-06 15:27 F4ntasy 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 老师提纲 1. create database test2. drop database test3. create table info( code int primary key, name varchar(20) not null)auto_increment 自增长列foreign key( 阅读全文
posted @ 2016-12-04 08:13 F4ntasy 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 增加数据:insert into 表名 values('','');insert into 表名(列名) values('');注意:1.如果添加 得数据是字符串,需要加'',其他类型不要加。 2.添加数据得时候值得数量要和列数量匹配 3. 单独增加一条数据 insert into 表名(列名) v 阅读全文
posted @ 2016-12-01 15:23 F4ntasy 阅读(215) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 下一页

對不起,您的瀏覽器不支持Flash


請使用支持Flash的瀏覽器訪問本頁,謝謝!