mirror of
https://github.com/php/pecl-database-dbase.git
synced 2026-03-26 00:12:11 +01:00
git-svn-id: http://svn.php.net/repository/pecl/dbase/trunk@351938 c90b9560-bf6c-de11-be94-00142212c4b1
65 lines
1.2 KiB
PHP
65 lines
1.2 KiB
PHP
<?php
|
|
|
|
/** @generate-function-entries */
|
|
|
|
/**
|
|
* @return resource|false
|
|
*/
|
|
function dbase_open(string $path, int $mode) {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_close($database): bool {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_add_record($database, array $data): bool {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_delete_record($database, int $number): bool {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_replace_record($database, array $data, int $number): bool {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_numrecords($database): int {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_numfields($database): int {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_pack($database): bool {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_get_record($database, int $number): array|false {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_get_record_with_names($database, int $number): array|false {}
|
|
|
|
/**
|
|
* @return resource|false
|
|
*/
|
|
function dbase_create(string $path, array $fields, int $type = DBASE_TYPE_DBASE) {}
|
|
|
|
/**
|
|
* @param resource $database
|
|
*/
|
|
function dbase_get_header_info($database): array {}
|
|
|