# customify/2.0.2/includes/lib/class-customify-array.php

Customify, version 2.0.2. 321 lines.

- Page: https://pluginprobe.com/plugins/customify/2.0.2/code/includes/lib/class-customify-array.php
- Raw: https://pluginprobe.com/plugins/customify/2.0.2/raw/includes/lib/class-customify-array.php
- Modified: 2018-07-13T11:47:34+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/customify/2.0.2/code/includes/lib/class-customify-array.php#L10-L20`.

```php
<?php
/**
 * This is a utility class that groups all our array related helper functions.
 *
 * @see         https://pixelgrade.com
 * @author      Pixelgrade
 * @version     1.0.0
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

if ( ! class_exists( 'Customify_Array' ) ) :

	class Customify_Array {
		/**
		 * Insert a value or key/value pair before a specific key in an array.  If key doesn't exist, value is prepended
		 * at the beginning of the array.
		 *
		 * @param array  $array
		 * @param string $key
		 * @param mixed  $insert
		 *
		 * @return array
		 */
		public static function insertBeforeKey( $array, $key, $insert ) {
			$keys  = array_keys( $array );
			$index = array_search( $key, $keys );
			$pos   = ( ( false === $index ) ? 0 : $index );
			if ( ! is_array( $insert ) ) {
				$insert = array( $insert );
			}
			return array_merge( array_slice( $array, 0, $pos ), $insert, array_slice( $array, $pos ) );
		}

		/**
		 * Insert a value (array included) or key/value pair after a specific key in an array.  If key doesn't exist, value is appended
		 * to the end of the array.
		 *
		 * @param array  $array
		 * @param string $key
		 * @param mixed  $insert
		 *
		 * @return array
		 */
		public static function insertAfterKey( $array, $key, $insert ) {
			$keys  = array_keys( $array );
			$index = array_search( $key, $keys );
			$pos   = ( ( false === $index ) ? count( $array ) : $index + 1 );
			if ( ! is_array( $insert ) ) {
				$insert = array( $insert );
			}
			return array_merge( array_slice( $array, 0, $pos ), $insert, array_slice( $array, $pos ) );
		}

		/**
		 * Find a subarray that has the desired key=>value. We will only go one level deep.
		 *
		 * For example, given the following array:
		 * array( array( 'two' => 'value1' ), array( 'two' => 'value2' ) )
		 * you can search for the key of the subarray containing the 'two' key with the 'value2', that is 1
		 *
		 * @param array  $array The array in which to search
		 * @param string $key The key to search for
		 * @param mixed  $value The value to search for
		 *
		 * @return mixed|false
		 */
		public static function findSubarrayByKeyValue( $array, $key, $value ) {
			// Bail if it's not array
			if ( ! is_array( $array ) ) {
				return false;
			}

			foreach ( $array as $k => $v ) {
				if ( isset( $v[ $key ] ) && $value == $v[ $key ] ) {
					return $k;
				}
			}

			return false;
		}

		/**
		 * Search an array of objects for a certain property value and return the index where it was found.
		 *
		 * @param array  $array
		 * @param string $property
		 * @param mixed  $value
		 *
		 * @return int|string|false
		 */
		public static function objArraySearch( $array, $property, $value ) {
			foreach ( $array as $key => $array_inf ) {
				if ( property_exists( $array_inf, $property ) && $array_inf->{$property} == $value ) {
					return $key;
				}
			}
			return false;
		}

		/**
		 * Get the difference between two associative arrays, recursively.
		 *
		 * @link http://be2.php.net/manual/en/function.array-diff-assoc.php#114297
		 *
		 * @param array $array1
		 * @param array $array2
		 *
		 * @return bool|array
		 */
		public static function arrayDiffAssocRecursive( $array1, $array2 ) {
			foreach ( $array1 as $key => $value ) {
				if ( is_array( $value ) ) {
					if ( ! isset( $array2[ $key ] ) ) {
						$difference[ $key ] = $value;
					} elseif ( ! is_array( $array2[ $key ] ) ) {
						$difference[ $key ] = $value;
					} else {
						$new_diff = self::arrayDiffAssocRecursive( $value, $array2[ $key ] );
						if ( false !== $new_diff ) {
							$difference[ $key ] = $new_diff;
						}
					}
				} elseif ( ! array_key_exists( $key, $array2 ) || $array2[ $key ] != $value ) {
					$difference[ $key ] = $value;
				}
			}

			return ! isset( $difference ) ? false : $difference;
		}

		/**
		 * Searches for an array entry that partially matches the needle and returns the first found key
		 *
		 * @param string $needle
		 * @param array  $haystack
		 *
		 * @return bool|int|string The first key whose value matched the partial needle. False on failure or invalid input.
		 */
		public static function strArraySearch( $needle, $haystack ) {
			if ( empty( $haystack ) ) {
				return false;
			}

			if ( ! is_array( $haystack ) ) {
				return false;
			}

			foreach ( $haystack as $key => $value ) {
				if ( ! is_string( $value ) ) {
					return false;
				}

				if ( false !== strpos( $value, $needle ) ) {
					return $key;
				}
			}

			return false;
		}

		/**
		 * Searches in reverse order for an array entry that partially matches the needle and returns the first found key
		 *
		 * @param string $needle
		 * @param array  $haystack
		 *
		 * @return bool|int|string The first key whose value matched the partial needle. False on failure or invalid input.
		 */
		public static function strrArraySearch( $needle, $haystack ) {
			if ( empty( $haystack ) ) {
				return false;
			}

			if ( ! is_array( $haystack ) ) {
				return false;
			}

			$haystack = array_reverse( $haystack, true );

			foreach ( $haystack as $key => $value ) {
				if ( ! is_string( $value ) ) {
					return false;
				}

				if ( false !== strpos( $value, $needle ) ) {
					return $key;
				}
			}

			return false;
		}

		/**
		 * Detaches a specified item from an array and returns that item.
		 *
		 * @param array $array The array from which you want to detach an item (by reference).
		 * @param mixed $key   The key to detach and return.
		 *
		 * @return mixed|false Returns the key that was detached, or false if no key was found.
		 */
		public static function detach( array &$array, $key ) {
			if ( ! array_key_exists( $key, $array ) ) {
				return false;
			}
			$value = $array[ $key ];
			unset( $array[ $key ] );
			return $value;
		}

		/**
		 * Detaches a specified item from an array by value and returns that item.
		 *
		 * @param array $array The array from which you want to detach an item (by reference).
		 * @param mixed $value The value to find, detach, and return.
		 *
		 * @return mixed|false
		 */
		public static function detach_by_value( array &$array, $value ) {
			$key = array_search( $value, $array );
			if ( ! $key ) {
				return false;
			}
			return self::detach( $array, $key );
		}

		/**
		 * Moves an item from one position in an array to another position in the array.
		 *
		 * @param $array
		 * @param $old_index
		 * @param $new_index
		 *
		 * @return mixed
		 */
		public static function reorder( $array, $old_index, $new_index ) {
			array_splice(
				$array,
				$new_index,
				count( $array ),
				array_merge(
					array_splice( $array, $old_index, 1 ),
					array_slice( $array, $new_index, count( $array ) )
				)
			);
			return $array;
		}

		/**
		 * Great answer from here: http://be2.php.net/manual/en/function.array-merge-recursive.php#92195
		 *
		 * array_merge_recursive does indeed merge arrays, but it converts values with duplicate
		 * keys to arrays rather than overwriting the value in the first array with the duplicate
		 * value in the second array, as array_merge does. I.e., with array_merge_recursive,
		 * this happens (documented behavior):
		 *
		 * array_merge_recursive(array('key' => 'org value'), array('key' => 'new value'));
		 *     => array('key' => array('org value', 'new value'));
		 *
		 * array_merge_recursive_distinct does not change the datatypes of the values in the arrays.
		 * Matching keys' values in the second array overwrite those in the first array, as is the
		 * case with array_merge, i.e.:
		 *
		 * array_merge_recursive_distinct(array('key' => 'org value'), array('key' => 'new value'));
		 *     => array('key' => array('new value'));
		 *
		 * Parameters are passed by reference, though only for performance reasons. They're not
		 * altered by this function.
		 *
		 * @param array $array1
		 * @param array $array2
		 * @return array
		 * @author Daniel <daniel (at) danielsmedegaardbuus (dot) dk>
		 * @author Gabriel Sobrinho <gabriel (dot) sobrinho (at) gmail (dot) com>
		 */
		public static function array_merge_recursive_distinct( array &$array1, array &$array2 ) {
			$merged = $array1;

			foreach ( $array2 as $key => &$value ) {
				if ( is_array( $value ) && isset( $merged [ $key ] ) && is_array( $merged [ $key ] ) ) {
					$merged [ $key ] = self::array_merge_recursive_distinct( $merged [ $key ], $value );
				} else {
					$merged [ $key ] = $value;
				}
			}

			return $merged;
		}

		/**
		 * Orders an associative array by several keys values, each with its own order.
		 *
		 * See array_multisort() for flags.
		 *
		 * Taken from here: http://docs.php.net/manual/en/function.array-multisort.php#100534
		 *
		 * @return array
		 */
		public static function array_orderby() {
			$args = func_get_args();
			$data = array_shift( $args );
			foreach ( $args as $n => $field ) {
				if ( is_string( $field ) ) {
					$tmp = array();
					foreach ( $data as $key => $row ) {
						$tmp[ $key ] = $row[ $field ];
					}
					$args[ $n ] = $tmp;
				}
			}
			$args[] = &$data;
			call_user_func_array( 'array_multisort', $args );

			return array_pop( $args );
		}
	}

endif;

```
