1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="chdb" namespace="" name="chdb">
<constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Creates a chdb instance">Loads a chdb file, by mapping it into memory. While some validity checks are performed on the specified file, they are mostly there to avoid the possibility of common mistakes (for example, loading a file which is not a chdb database, or that is somehow incompatible with the current system). A maliciously crafted chdb file can thus be dangerous if loaded, so chdb files should be trusted and treated with the same security protections used for PHP shared libraries.</description>
<return type="void"/>
</docblock>
<parameter name="pathname" optional="false" byreference="false" type="string"/>
</constructor>
<method name="get" abstract="false" static="false" visibility="public" final="false">
<docblock>
<description compact="Gets the value associated with a key"/>
<return type="string"/>
</docblock>
<parameter name="key" optional="false" byreference="false" type="string"/>
</method>
</class>
|