Home php教程 PHP源码 图书类程序设计初始化文件

图书类程序设计初始化文件

May 25, 2016 pm 05:15 PM

php代码

<!--图书类文件: class_book.php-->
<?php
	class book
	{
		private $id;
		private $name;
		private $price;
		private $author;

		function __construct()	//__construct:构造函数,建立连接
		{
			//$this->name=$name;
			//$this->price=$price;
			//$this->author=$author;
		}
		function __set($property_name,$value)
		{
			return $this->$property_name=$value;
		}
		function __get($property_name)
		{
			if(isset($this->$property_name))
			{
				return $this->$property_name;
			}
			else
			{
				return null;
			}
		}

		function add()			//添加书目
		{
			$db=new database();
			$query="INSERT INTO Computer (name,price,author) ";
			$query.="VALUES (&#39;$this->name&#39;,$this->price,&#39;$this->author&#39;)";
			$db->execute($query);
			$db=null;

		}
		function update()		//修改书目
		{
			$db=new database();
			$query="UPDATE Computer SET ";
			$query.="name=&#39;$this->name&#39;,price=$this->price,author=&#39;$this->author&#39; ";
			$query.="WHERE id=$this->id";
			$db->execute($query);
			$db=null;

		}
		function delete()		//删除书目
		{
			$db=new database();
			$query="DELETE FROM Computer WHERE id=$this->id";
			$db->execute($query);
			$db=null;
		}
		static function query($condition)				//查询书目
		{
			if($condition=="" || $condition==null)
			$condition="";
			else
			$condition="WHERE ".$condition;
			$db=new database();
			$query="SELECT * FROM Computer ".$condition;
			$arr=$db->query($query);
			return $arr;
			$db=null;

		}

	}

/*
	$b=new book("C语言",15.20,"吴强");
	$b->add();
	//$b->__set(new_author,"3");
	//$b->update();
	//$b->delete();
	//*/
?>
Copy after login
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Mandragora: Whispers Of The Witch Tree - How To Unlock The Grappling Hook
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Hot Topics

Java Tutorial
1665
14
PHP Tutorial
1269
29
C# Tutorial
1249
24