Musical Palace
 
Modules
· Home
· Laura Magori Creations - Ploaia (The Rain)
· About Laura Magori (Laura Angey)
· Cv Laura Magori
· Diplome
· Duos
· Invited Artist: Alexander Zailer
· Laura Magori Audiochanel
· Laura Magori Creations -New Years Night
· Photos
· Search
· SL
· Statistics
· Stories Archive
· Wallpapers
La Playa



Quiero Ser



Someday My Prince Will Come



So This Is Love



Wanna Know What Love Is



And I Love You So



px_new

px_new

(PECL)

px_new -- Create a new paradox object

Description

resource px_new ( void )

Create a new paradox object. You will have to call this function before any further functions. px_new() does not create any file on the disk, it justs creates an instance of a paradox object.

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);
?>

free php nuke theme by ethaidesign.com
Website Power by PHPNuke.org. PHPNuke Theme Design By Ethaidesign.com