https://github.com/stilliard/blmreader
PHP BLM file format reader / parser (for use with rightmove files)
https://github.com/stilliard/blmreader
blm format-reader php rightmove-files
Last synced: about 1 year ago
JSON representation
PHP BLM file format reader / parser (for use with rightmove files)
- Host: GitHub
- URL: https://github.com/stilliard/blmreader
- Owner: stilliard
- License: mit
- Created: 2014-03-13T16:25:48.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2020-05-08T22:38:04.000Z (about 6 years ago)
- Last Synced: 2025-03-31T09:04:41.762Z (about 1 year ago)
- Topics: blm, format-reader, php, rightmove-files
- Language: PHP
- Homepage:
- Size: 16.6 KB
- Stars: 24
- Watchers: 7
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# BLM file format reader
[](https://travis-ci.org/stilliard/blmreader)
This php composer package provides a simple way to read BLM files for use with rightmove files
## Install
```bash
composer require stilliard/blmreader 1.0.1
```
## Example usage
```php
$blm = new \BLM\Reader(dirname(__FILE__) . '/test.blm');
var_dump($blm->toArray());
```