App\Libraries\Utils::parseInt PHP Method

parseInt() public static method

public static parseInt ( $value )
    public static function parseInt($value)
    {
        $value = preg_replace('/[^0-9]/', '', $value);
        return intval($value);
    }