Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,027

HOME > PHP > PHP Forum > Code PHP แบบ OOP เพื่อพัฒนาเว็บไซต์ สำหรับคนที่ต้องการศึกษา ลองเอาไปศึกษากันดูครับ



 

Code PHP แบบ OOP เพื่อพัฒนาเว็บไซต์ สำหรับคนที่ต้องการศึกษา ลองเอาไปศึกษากันดูครับ

 



Topic : 091172



โพสกระทู้ ( 3 )
บทความ ( 0 )



สถานะออฟไลน์




Code (PHP)
<?PHP
	class mysql_config{
		var $dbconfig= array(
							"hostname" => NULL,
							"username" => NULL,
							"password" => NULL,
							"database" => NULL,						
							"collation_connection" => NULL,
							"character_set" => NULL
							);
		function mysql_config(){
			$GLOBALS['global_mysql_querydb_timer'] = 0;
			$GLOBALS['global_mysql_querydb_counter'] = 0;
		}
		function get_configdb(){
			return $this->dbconfig;
		}
		function set_querydb_counter($value){
			global $static_querydb_count;
			
			if(isset($static_querydb_count)){
					$static_querydb_count= $value;
			}else{
				$GLOBALS['global_mysql_querydb_counter']= $value;
			}			
		}
		function get_querydb_counter(){
			global $static_querydb_count;
			
			if(isset($static_querydb_count)){
				return $static_querydb_count;				
			}else{
				return $GLOBALS['global_mysql_querydb_counter'];
			}
		}		
		function set_querydb_timer($value){
			global $static_query_timer;
			
			if(isset($static_query_timer)){
				$static_query_timer=$value;
			}else{
				 $GLOBALS['global_mysql_querydb_timer']=$value;
			}
		}
		function get_querydb_timer(){
			global $static_querydb_timer;
			
			if(isset($static_querydb_timer)){
				return $static_querydb_timer;
			}else{
				return $GLOBALS['global_mysql_querydb_timer'];
			}
		}
		function set_character_set($value){
			$this->dbconfig['character_set']= $value;
		}
		function set_collation_connection($value){
			$this->dbconfig['collaction_connection']= $value;
		}
		function set_database($value){
			$this->dbconfig['database']= $value;
		}
		function set_hostname(){
			$this->dbconfig['hostname']= $value;
		}
		function set_username($value){
			$this->dbconfig['username']= $value;
		}
		function set_password($value){
			$this->dbconfig['password']= $value;
		}
	}
	class mysql_operator extends mysql_config{
		var $link = NULL;
		var $result= NULL;
		var $mysql_version = NULL;
		var $string_error = array();
		
		function set_configdb(&$array_dbconfig){
			$this->set_hostname($array_dbconfig['hostname']);
			$this->set_username($array_dbconfig['username']);
			$this->set_password($array_dbconfig['password']);
			$this->set_database($array_dbconfig['database']);
			$this->set_collation_connection(
										   $array_dbconfig['collation_connection']
										   );
			$this->set_character_set($array_dbconfig['character_set']);
		}
		function set_error_msg($string){
			array_push($this->string_error, $string);
		}
		function get_error_msg(){
			while(count($this->string_error)-1)
				$string_output='<b>MySql Error:</b>'.
								array_pop($this->string_error).'<br/>';
				return $string_output;
		}
		function mysql_operator(&$dbconfig){
			if(is_array($dbconfig))$this->set_configdb($dbconfig);
			else $this->set_configdb($dbconfig->get_configdb());	
			
		}
		function set_mysql_version($value){
			$this->mysql_version=$value;			
		}
		function get_mysql_version(){
			return $this->mysql_version;	
		}
		function opendb($newlink=FALSE){
			$this->link=mysql_connect(
									  $this->dbconfig['hostname'],
									  $this->dbconfig['username'],
									  $this->dbconfig['password'],
									  $newlink);
			if(!$this->link)
				$this->set_error_msg(
									 mysql_errno($this->link).':'.
									 mysql_error($this->link)
									 );				
				$this->set_mysql_version(mysql_get_server_info());
						
			if(!mysql_select_db($this->dbconfig['database']))
				$this->set_error_msg(
									 mysql_errno($this->link).':'.
									 mysql_error($this->link)
									 );
			if(!empty($this->dbconfig['character_set'])){
				$this->querydb("SET CHARACTER SET".
							   $this->dbconfig['character_set'].";"
							   );
				$this->querydb_counter_decrement();
			}
			if(!empty($this->dbconfig['collation_connection'])){
				$this->querydb("SET collation_connection=".
							   $this->dbconfig['collation_connecttion'].";");
				$this->querydb_counter_decrement();
			}
		}
		function closedb(){
			if(!mysql_close($this->link))
				$this->set_error_msg(
									mysql_errno($this->link).':'.
									mysql_error($this->link)
									);
		}
		function insert(){
			$this->sql = "insert into $this->table ($this->fiel) values ($this->value)";
			return $this->sql;
		}
		function update(){
			$this->sql = "update $this->table set $this->fiel where $this->condition";
			return $this->sql;
		} 
		function delete(){
			$this->sql = "delete from $this->table where $this->condition";
			return $this->sql;
		} 
		function querydb($string_query){
			$start_time=array_sum(explode(chr(32),microtime()));
			$this->result=mysql_query($string_query);
			mysql_query("SET NAMES UTF8");
			$end_time= array_sum(explode(chr(32),microtime()));
			
			if(!$this->result)
				$this->set_error_msg(
									 mysql_errno($this->link).':'.
									 mysql_error($this->link)
									 );
			$this->set_querydb_timer(
									 $this->get_querydb_timer()+($end_time-$start_time)
									 );
			$this->querydb_counter_increment();
		}
		function querydb_counter_increment(){
			$this->set_querydb_counter($this->get_querydb_counter()+1);
		}
		function querydb_counter_decrement(){
			$this->set_querydb_counter($this->get_querydb_counter()-1);
		}
		function get_resultdb(){
			return $this->result;
		}
		
		function fetch_data(){
			return mysql_fetch_array($this->get_resultdb());			
		}
		function num_rows(){
			return mysql_num_rows($this->get_resultdb());
		}
	}
//connection
$obj_dbconfig = new mysql_config();
$obj_dbconfig->set_hostname("server");
$obj_dbconfig->set_username("username");
$obj_dbconfig->set_password("password");
$obj_dbconfig->set_database("database");
$obj_dbconfig->set_character_set("utf8");
$obj_dbconfig->set_collation_connection("utf8_general_ci");

$obj_db = new mysql_operator($obj_dbconfig->get_configdb());
$obj_db->opendb();
?>




Tag : PHP







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2013-02-20 14:57:37 By : hassatorn View : 1778 Reply : 5
 

 

No. 1



โพสกระทู้ ( 126 )
บทความ ( 0 )



สถานะออฟไลน์


function เยอะจัง เห็นแล้วมันปวดหัวดี

แต่ก็ขอบใจจ๋า






แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-20 15:23:09 By : KenJeRoKung
 


 

No. 2



โพสกระทู้ ( 36 )
บทความ ( 0 )



สถานะออฟไลน์


น่าจะมีตัวอย่างการนำไปใช้มั้งนะครับ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-20 15:47:07 By : MrAeker
 

 

No. 3



โพสกระทู้ ( 74,058 )
บทความ ( 838 )

สมาชิกที่ใส่เสื้อไทยครีเอท

สถานะออฟไลน์
Twitter Facebook


แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-21 09:19:35 By : mr.win
 


 

No. 4



โพสกระทู้ ( 3 )
บทความ ( 0 )



สถานะออฟไลน์


ตัวอย่างว่างๆ เดี๋ยวเอามาให้ครับ แต่ตอนนี้ขอตัวทำงานก่อนเด้อ อิอิ
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-21 09:43:00 By : hassatorn
 


 

No. 5



โพสกระทู้ ( 3 )
บทความ ( 0 )



สถานะออฟไลน์


วิธีใช้โหลด Ebook จากเว็บเลยครับ
http://www.zone-it.com/b22/185921


ประวัติการแก้ไข
2013-02-24 11:01:59
แสดงความคิดเห็นโดยอ้างถึง ความคิดเห็นนี้
Date : 2013-02-24 11:01:33 By : hassatorn
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : Code PHP แบบ OOP เพื่อพัฒนาเว็บไซต์ สำหรับคนที่ต้องการศึกษา ลองเอาไปศึกษากันดูครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 00
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2024 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่