Perl Cd Bookshelf [Electronic resources] نسخه متنی

اینجــــا یک کتابخانه دیجیتالی است

با بیش از 100000 منبع الکترونیکی رایگان به زبان فارسی ، عربی و انگلیسی

Perl Cd Bookshelf [Electronic resources] - نسخه متنی

| نمايش فراداده ، افزودن یک نقد و بررسی
افزودن به کتابخانه شخصی
ارسال به دوستان
جستجو در متن کتاب
بیشتر
تنظیمات قلم

فونت

اندازه قلم

+ - پیش فرض

حالت نمایش

روز نیمروز شب
جستجو در لغت نامه
بیشتر
لیست موضوعات
توضیحات
افزودن یادداشت جدید



8.116. GDBM_File


Allows Perl
programs to make use of the facilities provided by the GNU
gdbm library. Most of the
libgdbm.a functions are available as methods of
the GDBM_File interface. (See the gdbm(3)
manpage and the description of DB_File in this chapter.) The
following is an example of the use of GDBM_File:

use GDBM_File;
tie %hash, "GDBM_File", $filename, &GDBM_WRCREAT, 0644);
# Read/writes of %hash are now read/writes of $filename
untie %hash;



8.115. FindBin8.117. Getopt::Long




Copyright © 2002 O'Reilly & Associates. All rights reserved.

/ 875