file to binary php

Solutions on MaxInterview for file to binary php by the best coders in the world

showing results for - "file to binary php"
Manuel
17 Mar 2016
1$data = fopen ($image, 'rb');
2$size=filesize ($image);
3$contents= fread ($data, $size);
4fclose ($data);
5