PHP-SDK Quick Start
Installation
Composer (recommended)
$ composer require justimmo/php-sdk "1.0.*"
Composer generates a vendor/autoload.php file. You can simply include this file
<?php
require_once __DIR__.'/vendor/autoload.php';
Install Composer if not available
Manually
- Download the latest stable release of php-sdk https://github.com/justimmo/php-sdk
- Download https://github.com/php-fig/log
- Extract the php-sdk into your projects vendor folder
- Extract log into the src folder of php-sdk
<?php
require_once 'path_to_extraction/src/autoload.php';
Usage example
<?php
use Justimmo\Api\JustimmoApi;
use Justimmo\Model\RealtyQuery;
use Justimmo\Model\Wrapper\V1\RealtyWrapper;
use Justimmo\Model\Mapper\V1\RealtyMapper;
$api = new JustimmoApi('username', 'password');
$mapper = new RealtyMapper();
$wrapper = new RealtyWrapper($mapper);
$query = new RealtyQuery($api, $wrapper, $mapper);
$realties = $query->filterByPrice(array('min' => 500, 'max' => 1500))
->filterByZipCode(1020)
->orderBy('price', 'desc')
->find();
foreach ($realties as $realty) {
echo $realty->getTitle() . ' ' . $realty->getPropertyNumber();
//....
}
//fetching Realty by PrimaryKey
$query->findPk(12345);