Query/common.php

107 lines
2.3 KiB
PHP
Raw Normal View History

2012-10-31 16:21:15 -04:00
<?php
/**
* Query
*
* Free Query Builder / Database Abstraction Layer
*
* @package Query
* @subpackage Core
2012-10-31 16:21:15 -04:00
* @author Timothy J. Warren
2014-01-02 12:36:50 -05:00
* @copyright Copyright (c) 2012 - 2014
2012-10-31 16:21:15 -04:00
* @link https://github.com/aviat4ion/Query
* @license http://philsturgeon.co.uk/code/dbad-license
*/
// --------------------------------------------------------------------------
/**
* Global functions that don't really fit anywhere else
2012-10-31 16:21:15 -04:00
*/
2012-10-31 16:21:15 -04:00
// --------------------------------------------------------------------------
if ( ! function_exists('do_include'))
{
/**
* Bulk directory loading workaround for use
* with array_map and glob
*
* @param string $path
* @return void
*/
function do_include($path)
{
require_once($path);
}
}
// --------------------------------------------------------------------------
if ( ! function_exists('mb_trim'))
{
/**
* Multibyte-safe trim function
*
2014-02-07 16:53:01 -05:00
* @param string $string
2012-10-31 16:21:15 -04:00
* @return string
*/
function mb_trim($string)
{
return preg_replace("/(^\s+)|(\s+$)/us", "", $string);
}
}
// --------------------------------------------------------------------------
/**
* Filter out db rows into one array
*
* @param array $array
* @param mixed $index
* @return array
*/
function db_filter($array, $index)
{
$new_array = array();
foreach($array as $a)
{
$new_array[] = $a[$index];
}
return $new_array;
}
// --------------------------------------------------------------------------
/**
* Connection function
*
* Send an array or object as connection parameters to create a connection. If
* the array or object has an 'alias' parameter, passing that string to this
* function will return that connection. Passing no parameters returns the last
* connection created.
*
* @param string|object|array $params
2014-04-03 15:05:18 -04:00
* @return Query\Query_Builder|null
*/
2014-02-14 22:08:19 -05:00
function Query($params = '')
{
2014-04-02 17:08:50 -04:00
$cmanager = \Query\Connection_Manager::get_instance();
2014-02-07 16:53:01 -05:00
// If you are getting a previously created connection
if (is_scalar($params))
{
return $cmanager->get_connection($params);
}
elseif ( ! is_scalar($params) && ! is_null($params))
2014-03-31 12:58:43 -04:00
{
$params = new ArrayObject($params, ArrayObject::STD_PROP_LIST | ArrayObject::ARRAY_AS_PROPS);
2014-03-31 12:58:43 -04:00
// Otherwise, return a new connection
return $cmanager->connect($params);
}
// @codeCoverageIgnoreStart
}
// @codeCoverageIgnoreEnd
2014-02-07 16:53:01 -05:00
// End of common.php