此函数关闭FILEHANDLE,在适当的情况下刷新缓冲区,并将FILEHANDLE与原始文件,管道或套接字解除关联。 如果未指定,则关闭当前选定的文件句柄。
以下是此函数的简单语法 -
close FILEHANDLE
close
此函数在失败时返回0,如果刷新缓冲区并且文件已成功关闭,则返回1。
<!--Following is the example code showing its basic usage −
#!/usr/bin/perl
When above code is executed, it produces the following result −
-->