추가, 삭제 및 수정을 구현하기 위해 데이터베이스에 연결하는 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"); }
function update($tableName,$change,$condition){ $this->query("UPDATE $tableName SET $change $condition"); }
function delete($tableName,$condition){ $this->query("DELETE FROM $tableName $condition"); }
$db = new Mysql("localhost","root","admin","beyondweb_test");
<?php require("mysql_class.php"); ?>
<?php $insert = $db->insert("user","(nikename,email)","(#beyondweb#,#beyondwebcn@xx.com#)");//请把#号替换为单引号 $db->dbClose(); ?>
<?php $update = $db->update("user","nikename = #beyondwebcn#","where id = #2#");//请把#号替换为单引号 $db->dbClose(); ?>
위 내용은 PHP 객체지향 데이터베이스 연결에서 추가, 삭제, 수정을 구현하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!