41 lines
1.3 KiB
PHP
41 lines
1.3 KiB
PHP
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/site/faq/license.php
|
|
+--------------------------------------------------------------------------
|
|
| functions.inc.php
|
|
| ========================================
|
|
| Installer Functions
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
function keySearch($find, $array, $keyname = null) {
|
|
foreach ($array as $key => $arrayVal) {
|
|
if (is_array($arrayVal)) {
|
|
$result = keySearch($find, $arrayVal, $key);
|
|
if ($result != false) return $result;
|
|
} else {
|
|
if (strtolower($arrayVal) == strtolower($find)) {
|
|
return (!empty($keyname)) ? $keyname : $key;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
?>
|