-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
31 lines (27 loc) · 860 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
require 'vendor/autoload.php';
use Oshomo\CsvUtils\Converter\JsonConverter;
use Oshomo\CsvUtils\Converter\XmlConverter;
use Oshomo\CsvUtils\Validator\Validator;
$file_path = realpath(dirname(__FILE__));
$file = $file_path . '/sample/sample.csv';
$validator = new Validator(
$file,
[
'stars' => ['between:7,10'],
'name' => ['ascii_only'],
'uri' => ['url', function ($value, $fail) {
if (0 !== strpos($value, 'https://')) {
return $fail('The URL passed must be https i.e it must start with https://');
}
}],
]
);
if (!$validator->fails()) {
$validator->write(new JsonConverter());
$validator->write(new XmlConverter());
} else {
$validator->write(new JsonConverter());
$validator->write(new XmlConverter('hotel'));
print_r($validator->errors());
}