# post-carousel/2.3.6/admin/views/sp-framework/functions/helpers.php

Smart Post – Post Grid, Post Carousel, Post Slider Gutenberg Blocks for Blog &amp; News, version 2.3.6. 78 lines.

- Page: https://pluginprobe.com/plugins/post-carousel/2.3.6/code/admin/views/sp-framework/functions/helpers.php
- Raw: https://pluginprobe.com/plugins/post-carousel/2.3.6/raw/admin/views/sp-framework/functions/helpers.php
- Modified: 2021-09-27T05:53:22+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/post-carousel/2.3.6/code/admin/views/sp-framework/functions/helpers.php#L10-L20`.

```php
<?php
/**
 * Helpers.
 *
 * @package post-carousel
 */

if ( ! defined( 'ABSPATH' ) ) {
	die; } // Cannot access directly.

if ( ! function_exists( 'spf_array_search' ) ) {
	/**
	 *
	 * Array search key & value
	 *
	 * @since 1.0.0
	 * @version 1.0.0
	 *
	 * @param array  $array search array.
	 * @param string $key the array key.
	 * @param mixed  $value The array value.
	 *
	 * @return $results
	 */
	function spf_array_search( $array, $key, $value ) {

		$results = array();

		if ( is_array( $array ) ) {
			if ( isset( $array[ $key ] ) && $array[ $key ] == $value ) {
				$results[] = $array;
			}

			foreach ( $array as $sub_array ) {
				$results = array_merge( $results, spf_array_search( $sub_array, $key, $value ) );
			}
		}

		return $results;

	}
}

if ( ! function_exists( 'spf_pcp_microtime' ) ) {
	/**
	 * Between microtime.
	 *
	 * @since 1.0.0
	 *
	 * @param integer $timenow Current time.
	 * @param integer $starttime Starting time.
	 * @param integer $timeout Time out.
	 * @return boolean
	 */
	function sps_pcp_timeout( $timenow, $starttime, $timeout = 30 ) {

		return ( ( $timenow - $starttime ) < $timeout ) ? true : false;

	}
}

if ( ! function_exists( 'spf_wp_editor_api' ) ) {
	/**
	 *
	 * Check for wp editor api
	 *
	 * @since 1.0.0
	 * @version 1.0.0
	 */
	function spf_wp_editor_api() {

		global $wp_version;

		return version_compare( $wp_version, '4.8', '>=' );

	}
}

```
