# fluentform/6.2.8/app/Compat/ArrayHelper.php

Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder, version 6.2.8. 36 lines.

- Page: https://pluginprobe.com/plugins/fluentform/6.2.8/code/app/Compat/ArrayHelper.php
- Raw: https://pluginprobe.com/plugins/fluentform/6.2.8/raw/app/Compat/ArrayHelper.php
- Modified: 2026-04-01T13:33:54+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/fluentform/6.2.8/code/app/Compat/ArrayHelper.php#L10-L20`.

```php
<?php

namespace FluentForm\Framework\Helpers;

use FluentForm\Framework\Support\Arr;
use FluentForm\Framework\Support\Helper;

class ArrayHelper extends Arr
{
    /**
     * Return the default value of the given value.
     *
     * @param  mixed $value
     * @return mixed
     */
    public static function value($value)
    {
        return Helper::value($value);
    }

    public static function isTrue($array, $key)
    {
        $value = static::get($array, $key);

        if (is_bool($value)) {
            return $value;
        }

        if ('false' == $value || '0' == $value || !$value) {
            return false;
        }

        return true;
    }
}

```
