Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pdf_new(3) [php man page]

PDF_NEW(3)								 1								PDF_NEW(3)

PDF_new - Create PDFlib object

SYNOPSIS
resource PDF_new (void ) DESCRIPTION
Creates a new PDFlib object with default settings. PHP Documentation Group PDF_NEW(3)

Check Out this Related Man Page

PX_NEW(3)																 PX_NEW(3)

px_new - Create a new paradox object

SYNOPSIS
resource px_new (void ) DESCRIPTION
Create a new paradox object. You will have to call this function before any further functions. px_new(3) does not create any file on the disk, it just creates an instance of a paradox object. This function must not be called if the object oriented interface is used. Use new paradox_db() instead. RETURN VALUES
Returns FALSE on failure. EXAMPLES
Example #1 Opening a Paradox database <?php if(!$pxdoc = px_new()) { /* Error handling */ } $fp = fopen("test.db", "r"); if(!px_open_fp($pxdoc, $fp)) { /* Error handling */ } // ... px_close($pxdoc); px_delete($pxdoc); fclose($fp); ?> If you prefer the object oriented API, then the above example will look like the following. Example #2 Opening a Paradox database <?php $fp = fopen("test.db", "r"); $pxdoc = new paradox_db(); if(!$pxdoc->open_fp($fp)) { /* Error handling */ } // ... $pxdoc->close(); fclose($fp); ?> SEE ALSO
px_delete(3), px_open_fp(3). PHP Documentation Group PX_NEW(3)
Man Page