|
 |
px_new (PECL) px_new -- Create a new paradox object Описание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.
Возвращаемые значения
Returns FALSE on failure.
Примеры
Пример 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.
Пример 2. Opening a Paradox database
<?php
$fp = fopen("test.db", "r");
$pxdoc = new paradox_db();
if(!$pxdoc->open_fp($fp)) {
}
$pxdoc->close();
fclose($fp);
?>
|
|
px_new
There are no user contributed notes for this page.
| |