PHP 8.5.0 Alpha 4 available for testing

Voting

: min(six, one)?
(Example: nine)

The Note You're Voting On

Anonymous
14 years ago
If you serve a file download over PHP with fread and print/echo and experience corrupted binary files, chances are the server still uses magic quotes and escapes the null bytes in your file. Although from 5.3.0 magic quotes are no longer supported, you might still encounter this problem. Try to turn them off by placing this code before using fread:

<?php
@ini_set('magic_quotes_runtime', 0);
?>

<< Back to user notes page

To Top