(PHP 4, PHP 5, PHP 7)
tmpfile — ����һ����ʱ�ļ�
�Զ�д��w+��ģʽ����һ������Ψһ�ļ�������ʱ�ļ�������һ���ļ������
�ļ����ڹرպ��� fclose()���Զ���ɾ�����ű�������
��ϸ��Ϣ��ο�ϵͳ�ֲ��е� tmpfile(3) �������Լ� stdio.h ͷ�ļ���
����һ���� fopen() ���������Ƶ����ļ������ ������ʧ��ʱ���� FALSE
.
Example #1 tmpfile() ����
<?php
$temp = tmpfile();
fwrite($temp, "writing to tempfile");
fseek($temp, 0);
echo fread($temp, 1024);
fclose($temp); // this removes the file
?>
�������̻������
writing to tempfile