Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test ใƒ†ใ‚นใƒˆ

Results 41 - 50 of 192 for timestamp:[now/d-1d TO *] (0.02 sec)

  1. modules.txt

    =head2 Pragmatic Modules They work somewhat like compiler directives (pragmata) in that they tend to affect the compilation of your program, and thus will usually work well only when used within a ...
    perldoc.perl.org/modules.txt
    Registered: Fri May 10 11:38:13 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  2. $..txt

    =over =item HANDLE->input_line_number( EXPR ) =item $INPUT_LINE_NUMBER =item $NR =item $. X<$.> X<$NR> X<$INPUT_LINE_NUMBER> X<line number> Current line number for the last filehandle accessed. Eac...
    perldoc.perl.org/variables/$..txt
    Registered: Sat May 11 00:43:23 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. $^P.txt

    =over =item $PERLDB =item $^P X<$^P> X<$PERLDB> The internal variable for debugging support. The meanings of the various bits are subject to change, but currently indicate: =over 6 =item 0x01 Debug...
    perldoc.perl.org/variables/$^P.txt
    Registered: Fri May 10 23:39:48 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. $@.txt

    =over =item $EVAL_ERROR =item $@ X<$@> X<$EVAL_ERROR> The Perl error from the last C<eval> operator, i.e. the last exception that was caught. For C<eval BLOCK>, this is either a runtime error messa...
    perldoc.perl.org/variables/$@.txt
    Registered: Sat May 11 00:08:37 UTC 2024
    - 611 bytes
    - Viewed (0)
  5. ${^MATCH}.txt

    =over =item ${^MATCH} X<${^MATCH}> It is only guaranteed to return a defined value when the pattern was compiled or executed with the C</p> modifier. This is similar to C<$&> (C<$MATCH>) except tha...
    perldoc.perl.org/variables/${^MATCH}.txt
    Registered: Sat May 11 00:17:12 UTC 2024
    - 498 bytes
    - Viewed (0)
  6. ARGVOUT.txt

    =over =item ARGVOUT X<ARGVOUT> The special filehandle that points to the currently open output file when doing edit-in-place processing with B<-i>. Useful when you have to do a lot of inserting and...
    perldoc.perl.org/variables/ARGVOUT.txt
    Registered: Fri May 10 23:47:38 UTC 2024
    - 303 bytes
    - Viewed (0)
  7. $^L.txt

    =over =item IO::Handle->format_formfeed(EXPR) =item $FORMAT_FORMFEED =item $^L X<$^L> X<$FORMAT_FORMFEED> What formats output as a form feed. The default is C<\f>. You cannot call C<format_formfeed...
    perldoc.perl.org/variables/$^L.txt
    Registered: Fri May 10 22:23:03 UTC 2024
    - 282 bytes
    - Viewed (0)
  8. perlopentut.txt

    =encoding utf8 =head1 NAME perlopentut - simple recipes for opening files and pipes in Perl =head1 DESCRIPTION Whenever you do I/O on a file in Perl, you do so through what in Perl is called a B<fi...
    perldoc.perl.org/perlopentut.txt
    Registered: Sat May 11 04:18:37 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. PerlIO.txt

    package PerlIO; our $VERSION = '1.12'; # Map layer name to package that defines it our %alias; sub import { my $class = shift; while (@_) { my $layer = shift; if (exists $alias{$layer}) { $layer = ...
    perldoc.perl.org/PerlIO.txt
    Registered: Fri May 10 23:32:36 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  10. $_.txt

    =over =item $ARG =item $_ X<$_> X<$ARG> The default input and pattern-searching space. The following pairs are equivalent: while (<>) {...} # equivalent only in while! while (defined($_ = <>)) {......
    perldoc.perl.org/variables/$_.txt
    Registered: Fri May 10 14:53:16 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top