A super easy PHP Framework for web development!
				https://github.com/exacti/phacil-framework
			
			
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
			
				
					112 lines
				
				3.1 KiB
			
		
		
			
		
	
	
					112 lines
				
				3.1 KiB
			| 
								 
											7 years ago
										 
									 | 
							
								<?php
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								/*
							 | 
						||
| 
								 | 
							
								 * Copyright © 2021 ExacTI Technology Solutions. All rights reserved.
							 | 
						||
| 
								 | 
							
								 * GPLv3 General License.
							 | 
						||
| 
								 | 
							
								 * https://exacti.com.br
							 | 
						||
| 
								 | 
							
								 * Phacil PHP Framework - https://github.com/exacti/phacil-framework
							 | 
						||
| 
								 | 
							
								 */
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								namespace Phacil\Framework\Databases;
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								/** 
							 | 
						||
| 
								 | 
							
								 * Legacy class to connect a MySQL with PHP 5 legacy driver.
							 | 
						||
| 
								 | 
							
								 * 
							 | 
						||
| 
								 | 
							
								 * Doesn't work with PHP 7+
							 | 
						||
| 
								 | 
							
								 * @package Phacil\Framework\Databases 
							 | 
						||
| 
								 | 
							
								 * */
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								class MySQL_legacy implements \Phacil\Framework\Interfaces\Databases {
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
									private $connection;
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
									public function __construct($hostname, $username, $password, $database, $port = '3306', $charset = 'utf8') {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
										if (!$this->connection = \mysql_connect($hostname, $username, $password)) {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								      		throw new \Phacil\Framework\Exception('Error: Could not make a database connection using ' . $username . '@' . $hostname);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								    	}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								    	if (!\mysql_select_db($database, $this->connection)) {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								      		throw new \Phacil\Framework\Exception('Error: Could not connect to database ' . $database);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								    	}
							 | 
						||
| 
								 | 
							
										
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
										\mysql_query("SET NAMES '".$charset."'", $this->connection);
							 | 
						||
| 
								 | 
							
										\mysql_query("SET CHARACTER SET ".$charset."", $this->connection);
							 | 
						||
| 
								 | 
							
										\mysql_query("SET CHARACTER_SET_CONNECTION=".$charset."", $this->connection);
							 | 
						||
| 
								 | 
							
										\mysql_query("SET SQL_MODE = ''", $this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								  	}
							 | 
						||
| 
								 
											4 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									public function isConnected() { }
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
										
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * 
							 | 
						||
| 
								 | 
							
									 * @param string $sql 
							 | 
						||
| 
								 | 
							
									 * @return \Phacil\Framework\Databases\Object\ResultInterface|true 
							 | 
						||
| 
								 | 
							
									 * @throws \Phacil\Framework\Exception 
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								  	public function query($sql) {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
										$resource = \mysql_query($sql, $this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
										if ($resource) {
							 | 
						||
| 
								 | 
							
											if (is_resource($resource)) {
							 | 
						||
| 
								 | 
							
												$i = 0;
							 | 
						||
| 
								 | 
							
								    	
							 | 
						||
| 
								 | 
							
												$data = array();
							 | 
						||
| 
								 | 
							
										
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
												while ($result = \mysql_fetch_assoc($resource)) {
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
													$data[$i] = $result;
							 | 
						||
| 
								 | 
							
								    	
							 | 
						||
| 
								 | 
							
													$i++;
							 | 
						||
| 
								 | 
							
												}
							 | 
						||
| 
								 | 
							
												
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
												\mysql_free_result($resource);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
												
							 | 
						||
| 
								 
											3 years ago
										 
									 | 
							
												$query = new \Phacil\Framework\Databases\Object\Result();
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
												$query->row = isset($data[0]) ? $data[0] : array();
							 | 
						||
| 
								 | 
							
												$query->rows = $data;
							 | 
						||
| 
								 | 
							
												$query->num_rows = $i;
							 | 
						||
| 
								 | 
							
												
							 | 
						||
| 
								 | 
							
												unset($data);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
												return $query;	
							 | 
						||
| 
								 | 
							
								    		} else {
							 | 
						||
| 
								 | 
							
												return true;
							 | 
						||
| 
								 | 
							
											}
							 | 
						||
| 
								 | 
							
										} else {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
											throw new \Phacil\Framework\Exception('Error: ' . \mysql_error($this->connection) . '<br />Error No: ' . mysql_errno($this->connection) . '<br />' . $sql);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								    	}
							 | 
						||
| 
								 | 
							
								  	}
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
									public function escape($value) {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
										return \mysql_real_escape_string($value, $this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
								  	public function countAffected() {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								    	return \mysql_affected_rows($this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								  	}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								  	public function getLastId() {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								    	return \mysql_insert_id($this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								  	}	
							 | 
						||
| 
								 | 
							
									
							 | 
						||
| 
								 | 
							
									public function __destruct() {
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
										\mysql_close($this->connection);
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
									}
							 | 
						||
| 
								 
											2 years ago
										 
									 | 
							
								
							 | 
						||
| 
								 | 
							
									/**
							 | 
						||
| 
								 | 
							
									 * Execute a prepared statement with parameters
							 | 
						||
| 
								 | 
							
									 *
							 | 
						||
| 
								 | 
							
									 * @param string $sql SQL query with named placeholders
							 | 
						||
| 
								 | 
							
									 * @param array $params Associative array of parameters
							 | 
						||
| 
								 | 
							
									 * @return \Phacil\Framework\Databases\Object\ResultInterface|true
							 | 
						||
| 
								 | 
							
									 * @throws \Phacil\Framework\Exception
							 | 
						||
| 
								 | 
							
									 */
							 | 
						||
| 
								 | 
							
									public function execute($sql, array $params = [])
							 | 
						||
| 
								 | 
							
									{
							 | 
						||
| 
								 | 
							
										foreach ($params as $placeholder => &$param) {
							 | 
						||
| 
								 | 
							
											$bindParams[] = $this->escape($param);
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
											if (is_string($placeholder))
							 | 
						||
| 
								 | 
							
												$sql = str_replace($placeholder, $this->escape($param), $sql);
							 | 
						||
| 
								 | 
							
										}
							 | 
						||
| 
								 | 
							
										$sql = str_replace(array_keys($params), array_values($bindParams), $sql);
							 | 
						||
| 
								 | 
							
										return $this->query($sql);
							 | 
						||
| 
								 | 
							
									}
							 | 
						||
| 
								 
											7 years ago
										 
									 | 
							
								}
							 |