PHP Classes

File: src/functions/helpers.php

Recommend this page to a friend!
  Classes of Muhammad Umer Farooq   PHP Input Class   src/functions/helpers.php   Download  
File: src/functions/helpers.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Input Class
Process the current HTTP request values
Author: By
Last change:
Date: 5 years ago
Size: 523 bytes
 

Contents

Class file image Download
<?php
if (!function_exists('input')) {
    function
input($key)
    {
        return \
Lablnet\Input::input($key);
    }
}
if (!
function_exists('escape')) {
    function
escape($str, $type = 'secured')
    {
        return \
Lablnet\Input::clean($str, $type);
    }
}
if (!
function_exists('restore_line_break')) {
    function
restore_line_break($input)
    {
        return \
Lablnet\Input::restoreLineBreaks($input);
    }
}
if (!
function_exists('is_ajax')) {
    function
is_ajax()
    {
        return \
Lablnet\Input::isAjax();
    }
}