HEX
Server: Apache
System: Linux WWW 6.1.0-40-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.153-1 (2025-09-20) x86_64
User: web11 (1011)
PHP: 8.2.29
Disabled: NONE
Upload Files
File: /var/www/lcc.kaunokolegija.lt/wp-content/plugins/codepress-admin-columns/classes/Helper/Arrays.php
<?php

namespace AC\Helper;

class Arrays {

	/**
	 * @param mixed $array
	 *
	 * @return bool
	 */
	public function is_associative( $array ) {
		if ( ! is_array( $array ) ) {
			return false;
		}

		foreach ( $array as $key => $value ) {
			if ( is_string( $key ) ) {
				return true;
			}
		}

		return false;
	}

	/**
	 * @param array $keys
	 * @param mixed $value
	 * @param array $result
	 *
	 * @return array
	 */
	public function add_nested_value( array $keys, $value, array $result = [] ) {
		$key = array_shift( $keys );

		if ( $keys ) {
			$value = $this->add_nested_value( $keys, $value, is_array( $result[ $key ] ) ? $result[ $key ] : [] );
		}

		$result[ $key ] = $value;

		return $result;
	}

	/**
	 * @param array $array
	 * @param array $keys
	 *
	 * @return mixed
	 */
	public function get_nested_value( array $array, array $keys ) {
		foreach ( $keys as $key ) {
			if ( ! isset( $array[ $key ] ) ) {
				return null;
			}

			$array = $array[ $key ];
		}

		return $array;
	}

	/**
	 * Implode for multi dimensional array
	 *
	 * @param string       $glue
	 * @param string|array $pieces
	 *
	 * @return string Imploded array
	 * @since 3.0
	 */
	public function implode_recursive( string $glue, $pieces ): string {
		if ( is_scalar( $pieces ) ) {
			return $pieces;
		}

		$scalars = [];

		if ( is_array( $pieces ) ) {
			foreach ( $pieces as $r_pieces ) {
				if ( is_array( $r_pieces ) ) {
					$scalars[] = $this->implode_recursive( $glue, $r_pieces );
				}
				if ( is_scalar( $r_pieces ) ) {
					$scalars[] = $r_pieces;
				}
			}
		}

		return implode( $glue, array_filter( $scalars, 'strlen' ) );
	}

	/**
	 * Indents any object as long as it has a unique id and that of its parent.
	 *
	 * @param array  $array
	 * @param int    $parentId
	 * @param string $parentKey
	 * @param string $selfKey
	 * @param string $childrenKey
	 *
	 * @return array Indented Array
	 * @since 1.0
	 */
	public function indent(
		$array,
		$parentId = 0,
		$parentKey = 'post_parent',
		$selfKey = 'ID',
		$childrenKey = 'children'
	) {
		$indent = [];

		$i = 0;
		foreach ( $array as $v ) {
			if ( $v->$parentKey == $parentId ) {
				$indent[ $i ] = $v;
				$indent[ $i ]->$childrenKey = $this->indent( $array, $v->$selfKey, $parentKey, $selfKey );

				$i++;
			}
		}

		return $indent;
	}

	/**
	 * Remove empty values from array
	 *
	 * @param array $array
	 *
	 * @return array
	 */
	public function filter( $array ) {
		return array_filter( $array, [ ac_helper()->string, 'is_not_empty' ] );
	}

	/**
	 * Insert element into array at specific position
	 *
	 * @param array  $array
	 * @param array  $insert
	 * @param string $position
	 *
	 * @return array
	 */
	public function insert( $array, $insert, $position ) {
		$new = [];
		foreach ( $array as $key => $value ) {
			$new[ $key ] = $value;
			if ( $key === $position ) {
				$new = array_merge( $new, $insert );
			}

		}

		return $new;
	}

	/**
	 * Get duplicates from array
	 *
	 * @param array $array
	 *
	 * @return array
	 */
	public function get_duplicates( array $array ) {
		return array_intersect( $array, array_unique( array_diff_key( $array, array_unique( $array ) ) ) );
	}

	/**
	 * Returns all integers from an array or comma separated string
	 *
	 * @param array|string $mixed
	 *
	 * @return int[]
	 */
	public function get_integers_from_mixed( $mixed ) {
		$string = ac_helper()->array->implode_recursive( ',', $mixed );

		return ac_helper()->string->string_to_array_integers( $string );
	}

	/**
	 * @param array  $array
	 * @param string $glue
	 *
	 * @return string
	 */
	public function implode_associative( array $array, $glue ) {
		_deprecated_function( __METHOD__, '5.7.1' );

		return '';
	}

	/**
	 * Replace a single key in an associative array
	 *
	 * @param array      $input   Input array.
	 * @param int|string $old_key Key to replace.
	 * @param int|string $new_key Key to replace $old_key with
	 *
	 * @return array
	 * @since 2.2.7
	 */
	public function key_replace( $input, $old_key, $new_key ) {
		$keys = array_keys( $input );
		$old_key_pos = array_search( $old_key, $keys );
		if ( $old_key_pos === false ) {
			return $input;
		}
		$keys[ $old_key_pos ] = $new_key;

		return array_combine( $keys, array_values( $input ) );
	}

}