为了在perl中填充文件内容,有几种方法。其中两个是以下:
1
print $file_handle1 <<LOC
this is content of first file
LOC
;
2
print $file_handle2 <<ACC
this is content of second file
ACC
;
那么LOC
和ACC
之间有什么区别(如果有的话)?
答案 0 :(得分:6)
答案 1 :(得分:3)
没有任何区别(至少就Perl而言)。那是heredoc syntax,您可以使用任何值作为块指示符的结尾。
答案 2 :(得分:1)
他们没有任何意义。它们是多行文本的分隔符。
有关详细信息,请访问Google perl here-doc。