View Single Post
  #4  
Old 02-21-2016, 04:26 PM
ffcmike ffcmike is offline
Banned
Join Date: Jul 2004
Location: London
Posts: 2,029
ffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond reputeffcmike has a reputation beyond repute
Send a message via AIM to ffcmike Send a message via MSN to ffcmike
It seems this is just the behaviour when echo'ing an array rather than a string.

For example it outputs the line count if I do:

PHP Code:
echo(("Message_"@temp.i).getlines().size());
//13
//13
//13 
You can coerce the array to a string by doing:

PHP Code:
echo(@ ("Message_"@temp.i).getlines());
//ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH
//ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH
//ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH,ASDFGH 
Reply With Quote