$settings) { if(is_int($key)) $connections['read'][] = $settings; } } // Specified both read & write servers else { $connections = $config; } } $this->db_encoding = $config['encoding']; // Actually connect to the specified servers foreach(array('read', 'write') as $type) { if(!is_array($connections[$type])) { break; } if(array_key_exists('hostname', $connections[$type])) { $details = $connections[$type]; unset($connections); $connections[$type][] = $details; } // Shuffle the connections shuffle($connections[$type]); // Loop-de-loop foreach($connections[$type] as $single_connection) { $connect_function = "pg_connect"; if(isset($single_connection['pconnect'])) { $connect_function = "pg_pconnect"; } $link = $type."_link"; $this->get_execution_time(); $this->connect_string = "dbname={$single_connection['database']} user={$single_connection['username']}"; if(strpos($single_connection['hostname'], ':') !== false) { list($single_connection['hostname'], $single_connection['port']) = explode(':', $single_connection['hostname']); } if($single_connection['port']) { $this->connect_string .= " port={$single_connection['port']}"; } if($single_connection['hostname'] != "") { $this->connect_string .= " host={$single_connection['hostname']}"; } if($single_connection['password']) { $this->connect_string .= " password={$single_connection['password']}"; } $this->$link = @$connect_function($this->connect_string); $time_spent = $this->get_execution_time(); $this->query_time += $time_spent; // Successful connection? break down brother! if($this->$link) { $this->connections[] = "[".strtoupper($type)."] {$single_connection['username']}@{$single_connection['hostname']} (Connected in ".number_format($time_spent, 0)."s)"; break; } else { $this->connections[] = "[FAILED] [".strtoupper($type)."] {$single_connection['username']}@{$single_connection['hostname']}"; } } } // No write server was specified (simple connection or just multiple servers) - mirror write link if(!array_key_exists('write', $connections)) { $this->write_link = &$this->read_link; } // Have no read connection? if(!$this->read_link) { $this->error("[READ] Unable to connect to PgSQL server"); return false; } // No write? else if(!$this->write_link) { $this->error("[WRITE] Unable to connect to PgSQL server"); return false; } $this->current_link = &$this->read_link; return $this->read_link; } /** * Query the database. * * @param string The query SQL. * @param boolean 1 if hide errors, 0 if not. * @param integer 1 if executes on slave database, 0 if not. * @return resource The query data. */ function query($string, $hide_errors=0, $write_query=0) { global $pagestarttime, $db, $mybb; $string = preg_replace("#LIMIT (\s*)([0-9]+),(\s*)([0-9]+)$#im", "LIMIT $4 OFFSET $2", trim($string)); $this->last_query = $string; $this->get_execution_time(); if(strtolower(substr(ltrim($string), 0, 5)) == 'alter') { $string = preg_replace("#\sAFTER\s([a-z_]+?)(;*?)$#i", "", $string); if(strstr($string, 'CHANGE') !== false) { $string = str_replace(' CHANGE ', ' ALTER ', $string); } } if($write_query && $this->write_link) { while(pg_connection_busy($this->write_link)); $this->current_link = &$this->write_link; pg_send_query($this->current_link, $string); $query = pg_get_result($this->current_link); } else { while(pg_connection_busy($this->read_link)); $this->current_link = &$this->read_link; pg_send_query($this->current_link, $string); $query = pg_get_result($this->current_link); } if((pg_result_error($query) && !$hide_errors)) { $this->error($string, $query); exit; } $query_time = $this->get_execution_time(); $this->query_time += $query_time; $this->query_count++; $this->last_result = $query; if($mybb->debug_mode) { $this->explain_query($string, $query_time); } return $query; } /** * Execute a write query on the slave database * * @param string The query SQL. * @param boolean 1 if hide errors, 0 if not. * @return resource The query data. */ function write_query($query, $hide_errors=0) { return $this->query($query, $hide_errors, 1); } /** * Explain a query on the database. * * @param string The query SQL. * @param string The time it took to perform the query. */ function explain_query($string, $qtime) { if(preg_match("#^\s*select#i", $string)) { $query = pg_query($this->current_link, "EXPLAIN $string"); $this->explain .= "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n"; while($table = pg_fetch_assoc($query)) { $this->explain .= "\n". "\n". "\n"; } $this->explain .= "\n". "\n". "\n". "
#".$this->query_count." - Select Query
".htmlspecialchars_uni($string)."
Info
".$table['QUERY PLAN']."
Query Time: ".$qtime."
\n". "
\n"; } else { $this->explain .= "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n". "\n". "
#".$this->query_count." - Write Query
".htmlspecialchars_uni($string)."
Query Time: ".$qtime."
\n". "
\n"; } $this->querylist[$this->query_count]['query'] = $string; $this->querylist[$this->query_count]['time'] = $qtime; } /** * Return a result array for a query. * * @param resource The query ID. * @param constant The type of array to return. * @return array The array of results. */ function fetch_array($query) { $array = pg_fetch_assoc($query); return $array; } /** * Return a specific field from a query. * * @param resource The query ID. * @param string The name of the field to return. * @param int The number of the row to fetch it from. */ function fetch_field($query, $field, $row=false) { if($row === false) { $array = $this->fetch_array($query); return $array[$field]; } else { return pg_fetch_result($query, $row, $field); } } /** * Moves internal row pointer to the next row * * @param resource The query ID. * @param int The pointer to move the row to. */ function data_seek($query, $row) { return pg_result_seek($query, $row); } /** * Return the number of rows resulting from a query. * * @param resource The query ID. * @return int The number of rows in the result. */ function num_rows($query) { return pg_num_rows($query); } /** * Return the last id number of inserted data. * * @return int The id number. */ function insert_id() { $this->last_query = str_replace(array("\r", "\n", "\t"), '', $this->last_query); preg_match('#INSERT INTO ([a-zA-Z0-9_\-]+)#i', $this->last_query, $matches); $table = $matches[1]; $query = $this->query("SELECT column_name FROM information_schema.constraint_column_usage WHERE table_name = '{$table}' and constraint_name = '{$table}_pkey' LIMIT 1"); $field = $this->fetch_field($query, 'column_name'); // Do we not have a primary field? if(!$field) { return; } $id = $this->write_query("SELECT currval('{$table}_{$field}_seq') AS last_value"); return $this->fetch_field($id, 'last_value'); } /** * Close the connection with the DBMS. * */ function close() { @pg_close($this->read_link); if($this->write_link) { @pg_close($this->write_link); } } /** * Return an error number. * * @return int The error number of the current error. */ function error_number($query="") { if(!$query || !function_exists("pg_result_error_field")) { return 0; } return pg_result_error_field($query, PGSQL_DIAG_SQLSTATE); } /** * Return an error string. * * @return string The explanation for the current error. */ function error_string($query="") { if($query) { return pg_result_error($query); } if($this->current_link) { return pg_last_error($this->current_link); } else { return pg_last_error(); } } /** * Output a database error. * * @param string The string to present as an error. */ function error($string="", $query="") { if($this->error_reporting) { if(class_exists("errorHandler")) { global $error_handler; if(!is_object($error_handler)) { require_once MYBB_ROOT."inc/class_error.php"; $error_handler = new errorHandler(); } $error = array( "error_no" => $this->error_number($query), "error" => $this->error_string($query), "query" => $string ); $error_handler->error(MYBB_SQL, $error); } else { trigger_error("[SQL] [".$this->error_number()."] ".$this->error_string()."
{$string}", E_USER_ERROR); } } } /** * Returns the number of affected rows in a query. * * @return int The number of affected rows. */ function affected_rows() { return pg_affected_rows($this->last_result); } /** * Return the number of fields. * * @param resource The query ID. * @return int The number of fields. */ function num_fields($query) { return pg_num_fields($query); } /** * Lists all functions in the database. * * @param string The database name. * @param string Prefix of the table (optional) * @return array The table list. */ function list_tables($database, $prefix='') { if($prefix) { $query = $this->query("SELECT table_name FROM information_schema.tables WHERE table_schema='public' AND table_name LIKE '".$this->escape_string($prefix)."%'"); } else { $query = $this->query("SELECT table_name FROM information_schema.tables WHERE table_schema='public'"); } while($table = $this->fetch_array($query)) { $tables[] = $table['table_name']; } return $tables; } /** * Check if a table exists in a database. * * @param string The table name. * @return boolean True when exists, false if not. */ function table_exists($table) { // Execute on master server to ensure if we've just created a table that we get the correct result $query = $this->write_query("SELECT COUNT(table_name) as table_names FROM information_schema.tables WHERE table_schema = 'public' AND table_name='{$this->table_prefix}{$table}'"); $exists = $this->fetch_field($query, 'table_names'); if($exists > 0) { return true; } else { return false; } } /** * Check if a field exists in a database. * * @param string The field name. * @param string The table name. * @return boolean True when exists, false if not. */ function field_exists($field, $table) { $query = $this->write_query("SELECT COUNT(column_name) as column_names FROM information_schema.columns WHERE table_name='{$this->table_prefix}{$table}' AND column_name='{$field}'"); $exists = $this->fetch_field($query, "column_names"); if($exists > 0) { return true; } else { return false; } } /** * Add a shutdown query. * * @param resource The query data. * @param string An optional name for the query. */ function shutdown_query($query, $name=0) { global $shutdown_queries; if($name) { $shutdown_queries[$name] = $query; } else { $shutdown_queries[] = $query; } } /** * Performs a simple select query. * * @param string The table name to be queried. * @param string Comma delimetered list of fields to be selected. * @param string SQL formatted list of conditions to be matched. * @param array List of options, order by, order direction, limit, limit start */ function simple_select($table, $fields="*", $conditions="", $options=array()) { $query = "SELECT ".$fields." FROM ".$this->table_prefix.$table; if($conditions != "") { $query .= " WHERE ".$conditions; } if(isset($options['order_by'])) { $query .= " ORDER BY ".$options['order_by']; if(isset($options['order_dir'])) { $query .= " ".my_strtoupper($options['order_dir']); } } if(isset($options['limit_start']) && isset($options['limit'])) { $query .= " LIMIT ".$options['limit_start'].", ".$options['limit']; } else if(isset($options['limit'])) { $query .= " LIMIT ".$options['limit']; } return $this->query($query); } /** * Build an insert query from an array. * * @param string The table name to perform the query on. * @param array An array of fields and their values. * @param boolean Whether or not to return an insert id. True by default * @return int The insert ID if available */ function insert_query($table, $array, $insert_id=true) { if(!is_array($array)) { return false; } $fields = implode(",", array_keys($array)); $values = implode("','", $array); $this->write_query(" INSERT INTO {$this->table_prefix}{$table} (".$fields.") VALUES ('".$values."') "); if($insert_id != false) { return $this->insert_id(); } else { return true; } } /** * Build one query for multiple inserts from a multidimensional array. * * @param string The table name to perform the query on. * @param array An array of inserts. * @return int The insert ID if available */ function insert_query_multiple($table, $array) { if(!is_array($array)) { return false; } // Field names $fields = array_keys($array[0]); $fields = implode(",", $fields); $insert_rows = array(); foreach($array as $values) { $insert_rows[] = "('".implode("','", $values)."')"; } $insert_rows = implode(", ", $insert_rows); $this->write_query(" INSERT INTO {$this->table_prefix}{$table} ({$fields}) VALUES {$insert_rows} "); } /** * Build an update query from an array. * * @param string The table name to perform the query on. * @param array An array of fields and their values. * @param string An optional where clause for the query. * @param string An optional limit clause for the query. * @param boolean An option to quote incoming values of the array. * @return resource The query data. */ function update_query($table, $array, $where="", $limit="", $no_quote=false) { if(!is_array($array)) { return false; } $comma = ""; $query = ""; $quote = "'"; if($no_quote == true) { $quote = ""; } foreach($array as $field => $value) { $query .= $comma.$field."={$quote}".$value."{$quote}"; $comma = ', '; } if(!empty($where)) { $query .= " WHERE $where"; } return $this->write_query(" UPDATE {$this->table_prefix}$table SET $query "); } /** * Build a delete query. * * @param string The table name to perform the query on. * @param string An optional where clause for the query. * @param string An optional limit clause for the query. * @return resource The query data. */ function delete_query($table, $where="", $limit="") { $query = ""; if(!empty($where)) { $query .= " WHERE $where"; } return $this->write_query(" DELETE FROM {$this->table_prefix}$table $query "); } /** * Escape a string according to the pg escape format. * * @param string The string to be escaped. * @return string The escaped string. */ function escape_string($string) { if(function_exists("pg_escape_string")) { $string = pg_escape_string($string); } else { $string = addslashes($string); } return $string; } /** * Frees the resources of a MySQLi query. * * @param object The query to destroy. * @return boolean Returns true on success, false on faliure */ function free_result($query) { return pg_free_result($query); } /** * Escape a string used within a like command. * * @param string The string to be escaped. * @return string The escaped string. */ function escape_string_like($string) { return $this->escape_string(str_replace(array('%', '_') , array('\\%' , '\\_') , $string)); } /** * Gets the current version of PgSQL. * * @return string Version of PgSQL. */ function get_version() { if($this->version) { return $this->version; } $version = pg_version($this->current_link); $this->version = $version['server']; return $this->version; } /** * Optimizes a specific table. * * @param string The name of the table to be optimized. */ function optimize_table($table) { $this->write_query("VACUUM ".$this->table_prefix.$table.""); } /** * Analyzes a specific table. * * @param string The name of the table to be analyzed. */ function analyze_table($table) { $this->write_query("ANALYZE ".$this->table_prefix.$table.""); } /** * Show the "create table" command for a specific table. * * @param string The name of the table. * @return string The pg command to create the specified table. */ function show_create_table($table) { $query = $this->write_query(" SELECT a.attnum, a.attname as field, t.typname as type, a.attlen as length, a.atttypmod as lengthvar, a.attnotnull as notnull FROM pg_class c LEFT JOIN pg_attribute a ON (a.attrelid = c.oid) LEFT JOIN pg_type t ON (a.atttypid = t.oid) WHERE c.relname = '{$this->table_prefix}{$table}' AND a.attnum > 0 ORDER BY a.attnum "); $lines = array(); $table_lines = "CREATE TABLE {$this->table_prefix}{$table} (\n"; while($row = $this->fetch_array($query)) { // Get the data from the table $query2 = $this->write_query(" SELECT pg_get_expr(d.adbin, d.adrelid) as rowdefault FROM pg_attrdef d LEFT JOIN pg_class c ON (c.oid = d.adrelid) WHERE c.relname = '{$this->table_prefix}{$table}' AND d.adnum = '{$row['attnum']}' "); if(!$query2) { unset($row['rowdefault']); } else { $row['rowdefault'] = $this->fetch_field($query2, 'rowdefault'); } if($row['type'] == 'bpchar') { // Stored in the engine as bpchar, but in the CREATE TABLE statement it's char $row['type'] = 'char'; } $line = " {$row['field']} {$row['type']}"; if(strpos($row['type'], 'char') !== false) { if($row['lengthvar'] > 0) { $line .= '('.($row['lengthvar'] - 4).')'; } } if(strpos($row['type'], 'numeric') !== false) { $line .= '('.sprintf("%s,%s", (($row['lengthvar'] >> 16) & 0xffff), (($row['lengthvar'] - 4) & 0xffff)).')'; } if(!empty($row['rowdefault'])) { $line .= " DEFAULT {$row['rowdefault']}"; } if($row['notnull'] == 't') { $line .= ' NOT NULL'; } $lines[] = $line; } // Get the listing of primary keys. $query = $this->write_query(" SELECT ic.relname as index_name, bc.relname as tab_name, ta.attname as column_name, i.indisunique as unique_key, i.indisprimary as primary_key FROM pg_class bc LEFT JOIN pg_index i ON (bc.oid = i.indrelid) LEFT JOIN pg_class ic ON (ic.oid = i.indexrelid) LEFT JOIN pg_attribute ia ON (ia.attrelid = i.indexrelid) LEFT JOIN pg_attribute ta ON (ta.attrelid = bc.oid AND ta.attrelid = i.indrelid AND ta.attnum = i.indkey[ia.attnum-1]) WHERE bc.relname = '{$this->table_prefix}{$table}' ORDER BY index_name, tab_name, column_name "); $primary_key = array(); // We do this in two steps. It makes placing the comma easier while($row = $this->fetch_array($query)) { if($row['primary_key'] == 't') { $primary_key[] = $row['column_name']; $primary_key_name = $row['index_name']; } } if(!empty($primary_key)) { $lines[] = " CONSTRAINT $primary_key_name PRIMARY KEY (".implode(', ', $primary_key).")"; } $table_lines .= implode(", \n", $lines); $table_lines .= "\n)\n"; return $table_lines; } /** * Show the "show fields from" command for a specific table. * * @param string The name of the table. * @return string Field info for that table */ function show_fields_from($table) { $query = $this->write_query("SELECT column_name FROM information_schema.constraint_column_usage WHERE table_name = '{$this->table_prefix}{$table}' and constraint_name = '{$this->table_prefix}{$table}_pkey' LIMIT 1"); $primary_key = $this->fetch_field($query, 'column_name'); $query = $this->write_query(" SELECT column_name as Field, data_type as Extra FROM information_schema.columns WHERE table_name = '{$this->table_prefix}{$table}' "); while($field = $this->fetch_array($query)) { if($field['field'] == $primary_key) { $field['extra'] = 'auto_increment'; } $field_info[] = array('Extra' => $field['extra'], 'Field' => $field['field']); } return $field_info; } /** * Returns whether or not the table contains a fulltext index. * * @param string The name of the table. * @param string Optionally specify the name of the index. * @return boolean True or false if the table has a fulltext index or not. */ function is_fulltext($table, $index="") { return false; } /** * Returns whether or not this database engine supports fulltext indexing. * * @param string The table to be checked. * @return boolean True or false if supported or not. */ function supports_fulltext($table) { return false; } /** * Returns whether or not this database engine supports boolean fulltext matching. * * @param string The table to be checked. * @return boolean True or false if supported or not. */ function supports_fulltext_boolean($table) { return false; } /** * Creates a fulltext index on the specified column in the specified table with optional index name. * * @param string The name of the table. * @param string Name of the column to be indexed. * @param string The index name, optional. */ function create_fulltext_index($table, $column, $name="") { return false; } /** * Drop an index with the specified name from the specified table * * @param string The name of the table. * @param string The name of the index. */ function drop_index($table, $name) { $this->write_query(" ALTER TABLE {$this->table_prefix}$table DROP INDEX $name "); } /** * Checks to see if an index exists on a specified table * * @param string The name of the table. * @param string The name of the index. */ function index_exists($table, $index) { $err = $this->error_reporting; $this->error_reporting = 0; $query = $this->write_query("SELECT * FROM pg_indexes WHERE tablename='".$this->escape_string($this->table_prefix.$table)."'"); $exists = $this->fetch_field($query, $index); $this->error_reporting = $err; if($exists) { return true; } else { return false; } } /** * Drop an table with the specified table * * @param string The name of the table. * @param boolean hard drop - no checking * @param boolean use table prefix */ function drop_table($table, $hard=false, $table_prefix=true) { if($table_prefix == false) { $table_prefix = ""; } else { $table_prefix = $this->table_prefix; } if($hard == false) { if($this->table_exists($table)) { $this->write_query('DROP TABLE '.$table_prefix.$table); } } else { $this->write_query('DROP TABLE '.$table_prefix.$table); } $query = $this->query("SELECT column_name FROM information_schema.constraint_column_usage WHERE table_name = '{$table}' and constraint_name = '{$table}_pkey' LIMIT 1"); $field = $this->fetch_field($query, 'column_name'); // Do we not have a primary field? if($field) { $this->write_query('DROP SEQUENCE {$table}_{$field}_id_seq'); } } /** * Replace contents of table with values * * @param string The table * @param array The replacements * @param mixed The default field(s) * @param boolean Whether or not to return an insert id. True by default */ function replace_query($table, $replacements=array(), $default_field="", $insert_id=true) { if($default_field == "") { $query = $this->write_query("SELECT column_name FROM information_schema.constraint_column_usage WHERE table_name = '{$this->table_prefix}{$table}' and constraint_name = '{$this->table_prefix}{$table}_pkey' LIMIT 1"); $main_field = $this->fetch_field($query, 'column_name'); } else { $main_field = $default_field; } $update = false; if(is_array($main_field) && !empty($main_field)) { $search_bit = array(); $string = ''; foreach($main_field as $field) { $search_bit[] = "{$field} = '".$replacements[$field]."'"; } $search_bit = implode(" AND ", $search_bit); $query = $this->write_query("SELECT COUNT(".$main_field[0].") as count FROM {$this->table_prefix}{$table} WHERE {$search_bit} LIMIT 1"); if($this->fetch_field($query, "count") == 1) { $update = true; } } else { $query = $this->write_query("SELECT {$main_field} FROM {$this->table_prefix}{$table}"); while($column = $this->fetch_array($query)) { if($column[$main_field] == $replacements[$main_field]) { $update = true; break; } } } if($update === true) { if(is_array($main_field)) { return $this->update_query($table, $replacements, $search_bit); } else { return $this->update_query($table, $replacements, "{$main_field}='".$replacements[$main_field]."'"); } } else { return $this->insert_query($table, $replacements, $insert_id); } } function build_fields_string($table, $append="") { $fields = $this->show_fields_from($table); $comma = ''; foreach($fields as $key => $field) { $fieldstring .= $comma.$append.$field['Field']; $comma = ','; } return $fieldstring; } /** * Drops a column * * @param string The table * @param string The column name */ function drop_column($table, $column) { return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} DROP {$column}"); } /** * Adds a column * * @param string The table * @param string The column name * @param string the new column definition */ function add_column($table, $column, $definition) { return $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ADD {$column} {$definition}"); } /** * Modifies a column * * @param string The table * @param string The column name * @param string the new column definition * @param boolean Whether to drop or set a column * @param boolean The new default value (if one is to be set) */ function modify_column($table, $column, $new_definition, $new_not_null=false, $new_default_value=false) { $result1 = $result2 = $result3 = true; if($new_definition !== false) { $result1 = $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ALTER COLUMN {$column} TYPE {$new_definition}"); } if($new_not_null !== false) { $set_drop = "DROP"; if(strtolower($new_not_null) == "set") { $set_drop = "SET"; } $result2 = $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ALTER COLUMN {$column} {$set_drop} NOT NULL"); } if($new_default_value !== false) { $result3 = $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ALTER COLUMN {$column} SET DEFAULT {$new_default_value}"); } else { $result3 = $this->write_query("ALTER TABLE {$this->table_prefix}{$table} ALTER COLUMN {$column} DROP DEFAULT"); } return $result1 && $result2 && $result3; } /** * Renames a column * * @param string The table * @param string The old column name * @param string the new column name * @param string the new column definition * @param boolean Whether to drop or set a column * @param boolean The new default value (if one is to be set) */ function rename_column($table, $old_column, $new_column, $new_definition, $new_not_null=false, $new_default_value=false) { $result1 = $this->write_query("ALTER TABLE {$this->table_prefix}{$table} RENAME COLUMN {$old_column} TO {$new_column}"); $result2 = $this->modify_column($table, $new_column, $new_definition, $new_not_null, $new_default_value); return ($result1 && $result2); } /** * Sets the table prefix used by the simple select, insert, update and delete functions * * @param string The new table prefix */ function set_table_prefix($prefix) { $this->table_prefix = $prefix; } /** * Fetched the total size of all mysql tables or a specific table * * @param string The table (optional) * @return integer the total size of all mysql tables or a specific table */ function fetch_size($table='') { if($table != '') { $query = $this->query("SELECT reltuples, relpages FROM pg_class WHERE relname = '".$this->table_prefix.$table."'"); } else { $query = $this->query("SELECT reltuples, relpages FROM pg_class"); } $total = 0; while($table = $this->fetch_array($query)) { $total += $table['relpages']+$table['reltuples']; } return $total; } /** * Fetch a list of database character sets this DBMS supports * * @return array Array of supported character sets with array key being the name, array value being display name. False if unsupported */ function fetch_db_charsets() { return false; } /** * Fetch a database collation for a particular database character set * * @param string The database character set * @return string The matching database collation, false if unsupported */ function fetch_charset_collation($charset) { return false; } /** * Fetch a character set/collation string for use with CREATE TABLE statements. Uses current DB encoding * * @return string The built string, empty if unsupported */ function build_create_table_collation() { return ''; } /** * Time how long it takes for a particular piece of code to run. Place calls above & below the block of code. * * @return float The time taken */ function get_execution_time() { static $time_start; $time = microtime(true); // Just starting timer, init and return if(!$time_start) { $time_start = $time; return; } // Timer has run, return execution time else { $total = $time-$time_start; if($total < 0) $total = 0; $time_start = 0; return $total; } } } ?>