Download the PHP package visol/idx-reader without Composer
On this page you can find all versions of the php package visol/idx-reader. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download visol/idx-reader
More information about visol/idx-reader
Files in visol/idx-reader
Download visol/idx-reader
More information about visol/idx-reader
Files in visol/idx-reader
Vendor visol
Package idx-reader
Short Description Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.
License MIT
Package idx-reader
Short Description Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.
License MIT
Keywords real estateidx-reader
Please rate this library. Is it a good library?
Informations about the package idx-reader
IDX Reader
Library to read and parse IDX data. Internet Data Exchange (IDX) is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.
Usage
$contents = file_get_contents('sample.idx');
$reader = new Visol\IdxReader\IdxReader();
$reader->load($contents);
We can also load a dataset from a file:
$reader = new Visol\IdxReader\IdxReader()
$reader->loadFromFile('sample.idx');
We can retrieve all records or count them:
// Returns an array of records
$reader->getRecords();
// Returns an integer
$reader->countRecords();
Complete example:
$reader = new Visol\IdxReader\IdxReader()
$reader
->forceUtf8()
->loadFromFile('sample.idx')
->getRecords();
Contribute
Contributions to the package are always welcome!
- Report any bugs or issues you find on the issue tracker.
- You can grab the source code at the package's Git repository.
Unit Tests
To run the unit tests simply:
License
All contents of this package are licensed under the MIT license.
All versions of idx-reader with dependencies
PHP Build Version
Package Version
Requires
php Version
^5.5.9 || ^7.0 || ^8.0
The package visol/idx-reader contains the following files
Loading the files please wait ....