px_new
(PECL paradox:1.0-1.4.1)
px_new — Create a new paradox object
Description
resource px_new
( void
)
Return Values
Returns FALSE on failure.
Examples
Example #1 Opening a Paradox database
<?php
if(!$pxdoc = px_new()) {
}
$fp = fopen("test.db", "r");
if(!px_open_fp($pxdoc, $fp)) {
}
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)) {
}
$pxdoc->close();
fclose($fp);
?>