note 102754 deleted from function.file-put-contents by danbrown

[email protected]
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: isaac dot z dot no dot foster at spam dot gmail dot please dot com 

----

Here is a version of TrentTompkins's file_force_contents for Windows:

   function file_force_contents($dir, $contents){
        $parts = explode('\\', $dir);
        $file = array_pop($parts);
        $dir = '';
        foreach($parts as $part) {
            if(!is_dir($dir = trim ($dir . "\\$part", '\\'))) {
				mkdir($dir);
			}
		}
        file_put_contents("$dir\\$file", $contents);
    }
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.