Jump to content

Escape characters on Windows7


sepoto

Recommended Posts

They are not working. Do I need to specify Unicode? They do not print or find properly either. Thanks!while($line=fgets($fh)){ $eachline[$entries] = $line; $entries++;}$startatline = 0;while($startatline <= $entries){ $findtab = strpos($eachline[$startatline], "\t" ); $barname=substr($eachline[$startatline], 0, $findtab-1); $findcr = strpos($eachline[$startatline], "\r" ); $baraddress=substr($eachline[$startatline], $findtab, $findcr-1); echo $barname; echo $baraddress; echo '\r'; echo '\n'; $startatline++;}

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...