i wanted to convert following split function, which i been using to preg_split.. its little confusing, because the value will change time to time..
current code:
$root_dir = 'www';
$current_dir = 'D:/Projects/job.com/www/www/path/source';
$array = split('www', 'D:/Projects/job.com/www/www/path/source', 2);
print_r($array);
output of the split function:
Array ( [0] => D:/Projects/job.com/ [1] => /www/path/source )
preg_split? – lonesomeday Jan 19 '11 at 12:34splitjust a function that usespreg_split? and why don't you use explode ? – RobertPitt Jan 19 '11 at 12:44split()is an old, deprecated function that didn't use PCRE at all, but a different regex engine/syntax. – BoltClock♦ Jan 19 '11 at 12:45