Blogger Information
Blog 34
fans 2
comment 2
visits 22644
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
数据库设计及PHP函数 20180518-14:50
AsNwds_MIS王的博客
Original
693 people have browsed it

数据库设计的注意事项:

1、命名规则 不能重复,切勿使用关键字作为数据库名称

2、数据表的分类,系统表、用户表、已分区表、临时表

3、创建列是要为列指定 字段名、数据类型、是否为NULL、 默认值、约束、是否是标识列等属性

4、建立表与表之间的关系,通过外键类建立联系

5、创建索引,加快从表或视图中检索数据的速度

6、创建约束,减少输入错误。

PHP函数回顾:

实例

<meta charset="UTF-8">
<?php
	$a;
	$b = false;
	$c ='';
	$d =0;
	$e = null;
	$f='false';
	//isset()是null的取反操作
	//
	var_dump(isset($a)); //返回 false
	var_dump(isset($b)); //返回 true
	var_dump(isset($c)); //返回 true
	var_dump(isset($d)); //返回 true
	var_dump(isset($e));  //返回 false

	echo '<hr>';
	//trim  移除字符串中的字符
	echo trim($f,'fa');

	//in_array() 搜索数组中是否存在指定的值
	echo '<hr>';
	$g = array(1,2,3,4,5);
	if (in_array(1,$g)) 
		{
			echo '存在';
		}
	else
		{
			echo '不存在';
		}
	echo '<hr>';
	//implode 返回由数组元素组成的字符串
	$h = array('我','爱','php');
	echo implode('',$h);
	
	echo '<hr>';
	//explode 把字符串分为数组
	$i= 'I love PHP';
	print_r(explode(' ',$i));
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

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