1 | #!/usr/bin/php -f |
||
2 | <?php |
||
3 | /** |
||
4 | * FlexiPeeHP - Dávkové operace |
||
5 | * |
||
6 | * @link https://www.flexibee.eu/api/dokumentace/ref/batch-operations/ Dávkové Operace |
||
7 | * @author Vítězslav Dvořák <[email protected]> |
||
8 | * @copyright (G) 2018 Vitex Software |
||
9 | */ |
||
10 | |||
11 | namespace Example\FlexiPeeHP; |
||
12 | |||
13 | include_once './config.php'; |
||
14 | include_once '../vendor/autoload.php'; |
||
15 | |||
16 | $adr = new \FlexiPeeHP\Adresar(null,['filter'=>"nazev like 'FlexiBee Systems s.r.o.'"]); |
||
17 | $adr->insertToFlexiBee([ |
||
0 ignored issues
–
show
|
|||
18 | 'nazev'=>'ABRA Flexi s.r.o.', |
||
19 | 'ulice'=>'Jeremiášova 1422/7b', |
||
20 | 'mesto'=>'Praha 13 Stodůlky', |
||
21 | 'psc'=>'155 00' |
||
22 | ]); |
||
23 | |||
24 | /* |
||
25 | {"winstrom":{"@version":"1.0","adresar":{"nazev":"ABRA Flexi s.r.o.","ulice":"Jeremi\u00e1\u0161ova 1422\/7b","mesto":"Praha 13 Stod\u016flky","psc":"155 00"},"adresar@filter":"nazev like 'FlexiBee Systems s.r.o.'"}} |
||
26 | */ |
||
27 |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.