Skip to content

Instantly share code, notes, and snippets.

@fvosberg
Created August 27, 2014 17:32
Show Gist options
  • Save fvosberg/71eb5daad5843bdf5866 to your computer and use it in GitHub Desktop.
Save fvosberg/71eb5daad5843bdf5866 to your computer and use it in GitHub Desktop.
<?php
$tempFile = tmpfile();
$tempFileMetaData = stream_get_meta_data( $tempFile );
fwrite($tempFile, $string);
// path of the temp file
$tempFileMetaData['uri'];
// deletes the tmp file
fclose($tempFile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment