RE: [PHP] Array of words in textfile?

2001-04-06 Thread Jonathan Sharp
: Thursday, April 05, 2001 11:11 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] Array of words in textfile? If they are all in a format like that, first just read the text file with fopen/fread into one big string. Then use: $refined_string = explode(" ", $bigstring); That'

[PHP] Array of words in textfile?

2001-04-05 Thread Jan Grafström
Hi! I want to read a textfile (cat, dog, rat,) and get it like this: $namesArray = array("cat,", "dog,", "rat,"); If I can do this than I can go on and make changes in my array. Like the examples in php manual. Thanks in advance for any tips. Regards Jan -- PHP General Mailing List

Re: [PHP] Array of words in textfile?

2001-04-05 Thread Plutarck
If they are all in a format like that, first just read the text file with fopen/fread into one big string. Then use: $refined_string = explode(" ", $bigstring); That's the main way to do it, but the preferable way is using a regular expression with either the ereg or preg functions. --