PHP 8.5.0 Beta 1 available for testing

Voting

: min(two, seven)?
(Example: nine)

The Note You're Voting On

vahkos at mail dot ru
13 years ago
file_put_contents does not issue an error message if file name is incorrect(for example has improper symbols on the end of it /n,/t)
that is why use trim() for file name.
$name=trim($name);
file_put_contents($name,$content);

<< Back to user notes page

To Top