-
Notifications
You must be signed in to change notification settings - Fork 9
/
dbase.stub.php
64 lines (50 loc) · 1.16 KB
/
dbase.stub.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<?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 {}