Tools, FAQ, Tutorials:
Reading a File in Binary Mode in PHP
How To Read a File in Binary Mode in PHP?
✍: FYIcenter.com
If you have a file that stores binary data, like an executable program or picture file, you need to read the file in binary mode to ensure that none of the data gets modified during the reading process. You need to:
Here is a PHP script example on reading binary file:
<?php
$in = fopen("/windows/system32/ping.exe", "rb");
$out = fopen("/temp/myPing.exe", "w");
$count = 0;
while (!feof($in)) {
$count++;
$buffer = fread($in,64);
fwrite($out,$buffer);
}
fclose($out);
fclose($in);
print("About ".($count*64)." bytes read.\n");
?>
This script will print:
About 16448 bytes read.
This script actually copied an executable program file ping.exe in binary mode to new file. The new file should still be executable. Try it: \temp\myping dev.fyicenter.com.
⇒ Writing a String to a File with a File Handle in PHP
⇐ Issue with "while ($c=fgetc($f))" Loop in PHP
2024-01-04, ≈13🔥, 1💬
Popular Posts:
How to create a "Sign-up or Sign-in" user flow policy in my Azure AD B2C directory? If you want to b...
How To Open Standard Output as a File Handle in PHP? If you want to open the standard output as a fi...
What is Azure API Management Developer Portal Admin? The Developer Portal Admin is an Azure Web port...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...