2017 © Pedro Peláez
 

library idx-reader

Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

image

visol/idx-reader

Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

  • Friday, February 3, 2017
  • by visol
  • Repository
  • 4 Watchers
  • 0 Stars
  • 271 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 43 % Grown

The README.md

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., (*1)

https://en.wikipedia.org/wiki/Internet_Data_Exchange, (*2)

See FieldParser.php for the implemented field names and idx-format-v3.01-description.xlsx for a detailed description of the IDX 3.01 standard., (*3)

Usage

$contents = file_get_contents('sample.idx');
$reader = new Visol\IdxReader\IdxReader();
$reader->load($contents);

We can also load a dataset from a file:, (*4)

$reader = new Visol\IdxReader\IdxReader()
$reader->loadFromFile('sample.idx');

We can retrieve all records or count them:, (*5)

// Returns an array of records
$reader->getRecords();

// Returns an integer
$reader->countRecords();

Complete example:, (*6)

$reader = new Visol\IdxReader\IdxReader()
$reader
    ->forceUtf8()
    ->loadFromFile('sample.idx')
    ->getRecords();

Contribute

Contributions to the package are always welcome!, (*7)

Unit Tests

To run the unit tests simply:, (*8)

./phpunit tests

License

All contents of this package are licensed under the MIT license., (*9)

The Versions

03/02 2017

dev-master

9999999-dev

Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

  Sources   Download

MIT

The Requires

  • php ^5.5.9|^7.0

 

The Development Requires

real estate idx-reader

03/02 2017

1.0.0

1.0.0.0

Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

  Sources   Download

MIT

The Requires

  • php ^5.5.9|^7.0

 

The Development Requires

real estate idx-reader

05/11 2016

dev-bug-fix-number-of-fields

dev-bug-fix-number-of-fields

Read IDX reader - Internet Data Exchange is a standard to describe properties such as houses, appartment, etc... commonly used in the real estate industry.

  Sources   Download

MIT

The Requires

  • php ^5.5.9|^7.0

 

The Development Requires

real estate idx-reader