Perl拾遗

前端之家收集整理的这篇文章主要介绍了Perl拾遗前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

1. $| = 1; $|缓冲输出控制标记,若设置为0,表示当前输入不经过缓存直接输出

2. use warnings;

    -w

The warning pragma is a replacement for the command line flag -w,but the pragma is limited to the enclosing block,while the flag is global. 

猜你在找的Perl相关文章