추가, 삭제 및 수정을 구현하기 위해 데이터베이스에 연결하는 PHP 객체 지향 방법: 먼저 Mysql 클래스를 생성하고 변수를 정의한 다음 생성자를 통해 클래스를 초기화한 다음 데이터베이스에 연결하고 데이터 삽입 방법을 사용자 정의합니다. 마지막으로 업데이트 및 삭제 메소드를 사용하여 데이터를 수정하거나 삭제할 수 있습니다.
권장: "PHP 비디오 튜토리얼"
PHP(객체 지향)는 데이터베이스에 연결하여 기본적인 추가, 삭제, 수정 및 확인을 구현합니다
1. mysql_class.php 파일을 생성한 다음 생성합니다. 파일의 Mysql 클래스 및 변수 정의
<?php class Mysql{ private $host;//服务器地址 private $root;//用户名 private $password;//密码 private $database;//数据库名 //后面所提到的各个方法都放在这个类里 //... } ?>
2 생성자를 통해 클래스를 초기화합니다
function __construct($host,$root,$password,$database){ $this->host = $host; $this->root = $root; $this->password = $password; $this->database = $database; $this->connect(); }
connect() 메서드에 대해서는 다음 단계에서 설명하겠습니다
3. 데이터베이스 메소드
function connect(){ $this->conn = mysql_connect($this->host,$this->root,$this->password) or die("DB Connnection Error !".mysql_error()); mysql_select_db($this->database,$this->conn); mysql_query("set names utf8"); } function dbClose(){ mysql_close($this->conn); }
4. mysql_query(), mysql_fetch_array(), mysql_num_rows() 함수를 사용하여
function query($sql){ return mysql_query($sql); } function myArray($result){ return mysql_fetch_array($result); } function rows($result){ return mysql_num_rows($result); }
5. 사용자 정의된 데이터 메소드 삽입
function select($tableName,$condition){ return $this->query("SELECT * FROM $tableName $condition"); }
7.
function insert($tableName,$fields,$value){ $this->query("INSERT INTO $tableName $fields VALUES$value"); }8. 사용자 정의 데이터 삭제 방법
function update($tableName,$change,$condition){ $this->query("UPDATE $tableName SET $change $condition"); }이제 데이터베이스 작업 클래스가 캡슐화되었으니 어떻게 사용하는지 살펴보겠습니다. 우리는 여전히 PHP를 사용하여 데이터베이스에 연결하여 가장 기본적인 추가, 삭제, 수정 및 쿼리(프로세스 지향)를 구현합니다. 기사에 관련된 데이터베이스 및 테이블(테이블에 데이터를 직접 추가): 9 . 그러면 먼저 데이터베이스 작업 클래스를 수행해 보겠습니다. 인스턴스화는 mysql_class.php 파일의 Mysql 클래스 외부에서 수행할 수 있습니다. 그런 다음 test.php 파일을 만들고 먼저 mysql_class.php 파일을 소개합니다.
function delete($tableName,$condition){ $this->query("DELETE FROM $tableName $condition"); }그런 다음 작업을 시작하겠습니다10 테이블에 데이터를 삽입합니다
$db = new Mysql("localhost","root","admin","beyondweb_test");11. 테이블의 데이터를 수정합니다
<?php require("mysql_class.php"); ?>12. , 테이블의 데이터를 쿼리하고 출력
<?php $insert = $db->insert("user","(nikename,email)","(#beyondweb#,#beyondwebcn@xx.com#)");//请把#号替换为单引号 $db->dbClose(); ?>13 테이블의 데이터를 삭제합니다
<?php $update = $db->update("user","nikename = #beyondwebcn#","where id = #2#");//请把#号替换为单引号 $db->dbClose(); ?>.
위 내용은 PHP 객체지향 데이터베이스 연결에서 추가, 삭제, 수정을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!