This function has been deprecated as of PHP 5.3.0.
Makes an array of a string. This function is case insensitive.
This function works just like split() but is case insensitive.
<pre>
<?php
$s = "this AND that";
print "split(): ";
print_r(split("and", $s));
print "<br>spliti(): ";
print_r(spliti("and", $s));
?>
</pre>
split(): Array
(
[0] => this AND that
)
spliti(): Array
(
[0] => this
[1] => that
)
spliti() is case insensitive, unlike split().