KickRocksBish Posted November 15, 2010 Share Posted November 15, 2010 ok I have a text file that has ids listed each on a new line how can I go about assigning each id to a variable so like 12312412 23432443 34654366 56456345 the variable $ids = all of the ids above one at a time in an array so like $ids[] = 12312412; $ids[] = 23432443; $ids[] = 34654366; $ids[] = 56456345; Link to comment https://forums.phpfreaks.com/topic/218716-php-listing-from-text-file/ Share on other sites More sharing options...
salathe Posted November 15, 2010 Share Posted November 15, 2010 You could just use the file function to put each line of the file into an item within an array like: $ids = file('your_text_file.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); The two FILE_*_LINES "flags" are used to trim new lines (which would ordinarily be appended to each item in the array) and to skip any empty lines, respectively. Link to comment https://forums.phpfreaks.com/topic/218716-php-listing-from-text-file/#findComment-1134362 Share on other sites More sharing options...
KickRocksBish Posted November 15, 2010 Author Share Posted November 15, 2010 <?php $ids = file('ids.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES); echo $ids; ?> just echos 'array' how do I assign the ids to the variable? Link to comment https://forums.phpfreaks.com/topic/218716-php-listing-from-text-file/#findComment-1134365 Share on other sites More sharing options...
salathe Posted November 15, 2010 Share Posted November 15, 2010 The ids are assigned to the variable in that code. You just cannot echo an array using echo()... either loop over the values and echo() one at a time, or use print_r/var_dump if you just want to see what $ids contains. Link to comment https://forums.phpfreaks.com/topic/218716-php-listing-from-text-file/#findComment-1134366 Share on other sites More sharing options...
KickRocksBish Posted November 15, 2010 Author Share Posted November 15, 2010 ahh I see, Thanks sir.. Sorry im such a noob, just learning php Link to comment https://forums.phpfreaks.com/topic/218716-php-listing-from-text-file/#findComment-1134367 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.