Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 1 - 10 of 204 for timestamp:[now/d-1d TO *] (0.07 sec)

  1. delete.txt

    =over =item delete EXPR X<delete> Given an expression that specifies an element or slice of a hash, L<C<delete>|/delete EXPR> deletes the specified elements from that hash so that L<C<exists>|/exis...
    perldoc.perl.org/functions/delete.txt
    Registered: Wed Apr 02 04:37:48 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  2. exists.txt

    =over =item exists EXPR X<exists> X<autovivification> Given an expression that specifies an element of a hash, returns true if the specified element in the hash has ever been initialized, even if t...
    perldoc.perl.org/functions/exists.txt
    Registered: Wed Apr 02 04:46:45 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  3. pos.txt

    =over =item pos SCALAR X<pos> X<match, position> =item pos Returns the offset of where the last C<m//g> search left off for the variable in question (L<C<$_>|perlvar/$_> is used when the variable i...
    perldoc.perl.org/functions/pos.txt
    Registered: Wed Apr 02 04:17:12 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  4. $?.txt

    =over =item $CHILD_ERROR =item $? X<$?> X<$CHILD_ERROR> The status returned by the last pipe close, backtick (C<``>) command, successful call to C<wait()> or C<waitpid()>, or from the C<system()> o...
    perldoc.perl.org/variables/$?.txt
    Registered: Wed Apr 02 02:47:15 UTC 2025
    - 1.2K bytes
    - Viewed (0)
  5. hex.txt

    =over =item hex EXPR X<hex> X<hexadecimal> =item hex Interprets EXPR as a hex string and returns the corresponding numeric value. If EXPR is omitted, uses L<C<$_>|perlvar/$_>. print hex '0xAf'; # p...
    perldoc.perl.org/functions/hex.txt
    Registered: Wed Apr 02 05:17:10 UTC 2025
    - 938 bytes
    - Viewed (0)
  6. $^M.txt

    =over =item $^M X<$^M> By default, running out of memory is an untrappable, fatal error. However, if suitably built, Perl can use the contents of C<$^M> as an emergency memory pool after C<die()>in...
    perldoc.perl.org/variables/$^M.txt
    Registered: Wed Apr 02 02:08:47 UTC 2025
    - 667 bytes
    - Viewed (0)
  7. ${^UTF8LOCALE}.txt

    =over =item ${^UTF8LOCALE} X<${^UTF8LOCALE}> This variable indicates whether a UTF-8 locale was detected by perl at startup. This information is used by perl when it's in adjust-utf8ness-to-locale ...
    perldoc.perl.org/variables/${^UTF8LOCALE}.txt
    Registered: Wed Apr 02 02:39:26 UTC 2025
    - 371 bytes
    - Viewed (0)
  8. log.txt

    =over =item log EXPR X<log> X<logarithm> X<e> X<ln> X<base> =item log Returns the natural logarithm (base I<e>) of EXPR. If EXPR is omitted, returns the log of L<C<$_>|perlvar/$_>. To get the log o...
    perldoc.perl.org/functions/log.txt
    Registered: Wed Apr 02 03:29:51 UTC 2025
    - 495 bytes
    - Viewed (0)
  9. $..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: Wed Apr 02 01:04:34 UTC 2025
    - 1.3K bytes
    - Viewed (0)
  10. ${^TAINT}.txt

    =over =item ${^TAINT} X<${^TAINT}> Reflects if taint mode is on or off. 1 for on (the program was run with B<-T>), 0 for off, -1 when only taint warnings are enabled (i.e. with B<-t> or B<-TU>). No...
    perldoc.perl.org/variables/${^TAINT}.txt
    Registered: Wed Apr 02 00:42:16 UTC 2025
    - 421 bytes
    - Viewed (0)
Back to top