NLCJ Posted September 9, 2010 Share Posted September 9, 2010 Hello, I'm creating a program that analyzes information that is exported by another program. That program exports it in this way: Value1 Value2 Value3 Value4 Value1 Value2... In order to insert them in the database, I first have to know how many lines are inserted. They get send through HTML post. I already tried: $lines = explode("\n", $string); $number_lines = count($lines); But this always results in 1. How do I fix this? Regards, Chris Quote Link to comment https://forums.phpfreaks.com/topic/213004-counting-lines/ Share on other sites More sharing options...
PFMaBiSmAd Posted September 9, 2010 Share Posted September 9, 2010 There must not be any \n in the data. Have you examined what is in $string or in $lines to see if they contain what you expect? Quote Link to comment https://forums.phpfreaks.com/topic/213004-counting-lines/#findComment-1109357 Share on other sites More sharing options...
rwwd Posted September 9, 2010 Share Posted September 9, 2010 Hi there, If you are wanting a line counter, then this does the job for me:- $lines = substr_count($comments, "\r\n") + 1; This works just fine for me - hope it's what your after anyway. Cheers, Rw Quote Link to comment https://forums.phpfreaks.com/topic/213004-counting-lines/#findComment-1109358 Share on other sites More sharing options...
NLCJ Posted September 9, 2010 Author Share Posted September 9, 2010 There must not be any \n in the data. Have you examined what is in $string or in $lines to see if they contain what you expect? Yes, nothing. Just an enter. Hi there, If you are wanting a line counter, then this does the job for me:- $lines = substr_count($comments, "\r\n") + 1; This works just fine for me - hope it's what your after anyway. Cheers, Rw Thanks a lot, this also does the job for me. Quote Link to comment https://forums.phpfreaks.com/topic/213004-counting-lines/#findComment-1109362 Share on other sites More sharing options...
rwwd Posted September 9, 2010 Share Posted September 9, 2010 Cool. Have a nice cool beer now! Rw Quote Link to comment https://forums.phpfreaks.com/topic/213004-counting-lines/#findComment-1109364 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.