From 68e30fd718b98a4cc6a449dbfbad368670efc25d Mon Sep 17 00:00:00 2001 From: Pascal Kriete Date: Wed, 10 Nov 2010 15:58:50 -0500 Subject: Removing the compatitibility helper. --- user_guide/helpers/compatibility_helper.html | 118 --------------------------- 1 file changed, 118 deletions(-) delete mode 100644 user_guide/helpers/compatibility_helper.html (limited to 'user_guide/helpers') diff --git a/user_guide/helpers/compatibility_helper.html b/user_guide/helpers/compatibility_helper.html deleted file mode 100644 index 9afec6541..000000000 --- a/user_guide/helpers/compatibility_helper.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - -Compatibility Helper : CodeIgniter User Guide - - - - - - - - - - - - - - - - - - - - - -
- - - - - -

CodeIgniter User Guide Version 2.0.0

-
- - - - - - - - - - -
- - -
- - - -
- - -

Compatibility Helper

- -

The Compatibility Helper file contains PHP 4 implementations of some PHP 5 only native PHP functions and constants. This can be useful - if you'd like to take advantage of some of these native function but your application may end up running on a PHP 4 server. - In these cases, it may be advantageous to Auto-load the Compatibility Helper so you - do not have to load it in each controller.

- -

Note: There are a few compatibility functions that are in CodeIgniter's native Compat.php file. - You may use those functions without loading this helper. The functions are split between that file and this Helper so that only - functions required by the framework are included by default. This way, whether or not you load the additional functions in this Helper - remains your choice.

- -

Loading this Helper

- -

This helper is loaded using the following code:

-$this->load->helper('compatibility'); - -

Available Constants

-

The following constants are available:

- -

PHP_EOL

-

The newline character for the server's current OS, e.g. on Windows systems "\r\n", on *nix "\n". - -

Available Functions

-

The following functions are available (see linked PHP documentation for documentation):

- -

file_put_contents() - The fourth parameter, $context, is not supported.

- -

fputcsv()

- -

http_build_query()

- -

str_ireplace() - The fourth parameter, $count, is not supported, as PHP 4 would make it become required.

- -

stripos()

- - - - - - - -
- - - - - - - \ No newline at end of file -- cgit v1.2.3-24-g4f1b