note 102425 deleted from function.split by thiago

[email protected] Sun, 13 Feb 2011 18:59:13 -0800
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: cohara87 @ google mail 

----

Please never *ever* use this from the previous note:

    list( $ip, $line, $filename) = split( ',', implode( ',', array('100.1.2.3','23','/index.php') ) ); 

This is exactly the same as:

    list($ip, $line, $filename) = array('100.1.2.3','23','/index.php');

In fact, never ever use split(). Go read up on preg_split() or explode() if you don't need regular expressions.