PHP code example of sedovsg / cbrf-dbf
1. Go to this page and download the library: Download sedovsg/cbrf-dbf library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
sedovsg / cbrf-dbf example snippets
use Cbrf\Dbf;
$dbf = (new Dbf('dir_name'));
$result = $dbf->
select('NNP, NAMEP')->
from('BNKSEEK.DBF')->
exect()->
fetchAll();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
exect()->
rowCount();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
exect()->
getFieldsInfo();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
exect()->
numFields();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
exect()->
getFields();
$result = $dbf->
select()->
from('KORREK.DBF')->
equal('DT_IZM = 19970617,CHS = 1447936521')->
exect()->
fetch();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
exclude('NNP = КРАСНОДАР')->
exect()->
fetch();
$result = $dbf->
select()->
from('BNKSEEK.DBF')->
$result = $dbf->
select('NNP, NAMEP')->
select('KSNP')->
from('BNKSEEK.DBF')->
$result = $dbf->
select('NNP, NAMEP')->
select('KSNP')->
from('BNKSEEK.DBF')->
$dbf->download();
$dbf->update();
$dbf->сlose();
bash
$ sudo pecl install package_name;
$ echo "extension=/usr/lib/php/20170718/package_name.so" | sudo tee /etc/php/7.2/mods-available/package.ini;
$ sudo ln -s /etc/php/7.2/mods-available/package_name.ini /etc/php/7.2/cli/conf.d/;
$ sudo ln -s /etc/php/7.2/mods-available/package_name.ini /etc/php/7.2/apache2/conf.d/