-
01 АВГ 20170
-
27 ИЮЛЬ 20170
-
26 ИЮЛЬ 20170
-
21 ИЮЛЬ 20170
phpfastcache - высокоэффективная система кэширования на php
Примерuse phpFastCache\Helper\Psr16Adapter; $Psr16Adapter = new Psr16Adapter($defaultDriver); if(!$Psr16Adapter->has('test-key')){ // Setter action $data = 'lorem ipsum'; $Psr16Adapter->set('test-key', 'lorem ipsum', 300);// 5 minutes }else{ // Getter action $data = $Psr16Adapter->get('test-key'); }
https://github.com/phpsocialnetwork/phpfastcache -
20 ИЮЛЬ 20170
moment.php - аналог moment.js на php
$m = new \Moment\Moment(); // default is "now" UTC echo $m->format(); // e.g. 2012-10-03T10:00:00+0000 $m = new \Moment\Moment('now', 'Europe/Berlin'); echo $m->format(); // e.g. 2012-10-03T12:00:00+0200 $m = new \Moment\Moment('2017-06-06T10:00:00', 'Europe/Berlin'); echo $m->format(); // e.g. 2012-10-03T12:00:00+0200 $m = new \Moment\Moment(1499366585); echo $m->format(); // e.g. 2017-07-06T18:43:05+0000
https://github.com/fightbulc/moment.php -
19 ИЮЛЬ 20170
botui - скрипт создания диалогового интерфейса
Примерvar botui = new BotUI('botui-app'); // give it the id of container botui.message.bot({ // show first message delay: 200, content: 'hello' }).then(function () { return botui.message.bot({ // second one delay: 1000, // wait 1 sec. content: 'how are you?' }); }).then(function () { return botui.action.button({ // let user do something delay: 1000, action: [ { text: 'Good', value: 'good' }, { text: 'Really Good', value: 'really_good' } ] }); }).then(function (res) { return botui.message.bot({ delay: 1000, content: 'You are feeling ' + res.text + '!' }); });
https://github.com/moinism/botui -
18 ИЮЛЬ 20170
-
17 ИЮЛЬ 20170
Категории:
Оставить на заметку в: