Query/src/common.php

122 lines
2.3 KiB
PHP
Raw Normal View History

2016-10-12 22:12:25 -04:00
<?php declare(strict_types=1);
2012-10-31 16:21:15 -04:00
/**
* Query
*
2016-09-07 13:17:17 -04:00
* SQL Query Builder / Database Abstraction Layer
2012-10-31 16:21:15 -04:00
*
2022-09-29 11:33:08 -04:00
* PHP version 8.1
2016-09-07 13:17:17 -04:00
*
2019-12-11 16:49:42 -05:00
* @package Query
2023-01-20 11:30:51 -05:00
* @author Timothy J. Warren <tim@timshome.page>
* @copyright 2012 - 2023 Timothy J. Warren
2019-12-11 16:49:42 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
* @link https://git.timshomepage.net/aviat/Query
2022-09-29 11:33:08 -04:00
* @version 4.0.0
2012-10-31 16:21:15 -04:00
*/
use Query\{ConnectionManager, QueryBuilderInterface};
/**
* Global functions that don't really fit anywhere else
*/
/**
* Multibyte-safe trim function
*/
function mb_trim(string $string): string
{
return preg_replace('/(^\s+)|(\s+$)/u', '', $string);
}
2012-10-31 16:21:15 -04:00
/**
* Filter out db rows into one array
*/
function dbFilter(array $array, mixed $index): array
{
$newArray = [];
2012-10-31 16:21:15 -04:00
foreach ($array as $a)
2016-10-12 22:12:25 -04:00
{
$newArray[] = $a[$index];
}
2018-01-24 13:14:03 -05:00
return $newArray;
}
2016-10-12 22:12:25 -04:00
/**
* Zip a set of arrays together on common keys
*
* The $zipperInput array is an array of arrays indexed by their place in the output
* array.
*/
function arrayZipper(array $zipperInput): array
{
$output = [];
foreach ($zipperInput as $appendKey => $values)
2018-01-24 13:14:03 -05:00
{
foreach ($values as $index => $value)
2019-12-11 16:49:06 -05:00
{
if ( ! isset($output[$index]))
{
$output[$index] = [];
}
$output[$index][$appendKey] = $value;
}
}
return $output;
}
/**
* Determine whether a value in the passed array matches the pattern
* passed
*/
function regexInArray(array $array, string $pattern): bool
{
if (empty($array))
{
2018-01-24 13:14:03 -05:00
return FALSE;
}
foreach ($array as $item)
2018-01-24 13:14:03 -05:00
{
if (is_scalar($item) && preg_match($pattern, (string) $item))
{
return TRUE;
}
}
2018-01-24 13:14:03 -05:00
return FALSE;
}
/**
* 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.
*/
function Query(string|object|array|null $params = ''): ?QueryBuilderInterface
{
if ($params === NULL)
{
return NULL;
}
$manager = ConnectionManager::getInstance();
// If you are getting a previously created connection
if (is_string($params))
{
return $manager->getConnection($params);
2018-01-24 13:14:03 -05:00
}
$paramsObject = (object) $params;
// Otherwise, return a new connection
return $manager->connect($paramsObject);
}
// End of common.php