[PHP] Read and write

2001-07-13 Thread Francois Boucher
I need to read in a binary file. (the file is write in c++ and contain integer, interger,char(10),char(10) ) So I need to read this and write it in normal caracters. So I try: $fp = fopen(data_bin.dat,rb); $data[] = fread($fp,4); $data[] = fread($fp,4); $data[] = fread($fp,10); $data[] =

Re: [PHP] Read and write

2001-07-13 Thread Chris Lambert - WhiteCrown Networks
PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 13, 2001 7:55 AM Subject: [PHP] Read and write | I need to read in a binary file. | (the file is write in c++ and contain integer, interger,char(10),char(10) ) | | So I need to read this and write it in normal caracters. | | So I try: | $fp = fopen