Longhorn PHP 2025 - Speakers and Schedule Announced!

Voting

: max(five, three)?
(Example: nine)

The Note You're Voting On

maksam07 at gmail dot com
6 years ago
A slightly simplified version of the method: http://php.net/manual/ru/function.file-put-contents.php#84180

<?php
function file_force_contents( $fullPath, $contents, $flags = 0 ){
$parts = explode( '/', $fullPath );
array_pop( $parts );
$dir = implode( '/', $parts );

if( !
is_dir( $dir ) )
mkdir( $dir, 0777, true );

file_put_contents( $fullPath, $contents, $flags );
}

file_force_contents( ROOT.'/newpath/file.txt', 'message', LOCK_EX );
?>

<< Back to user notes page

To Top