mirror of
https://gh.wpcy.net/https://github.com/LJPc-solutions/freescout-calendar-module.git
synced 2026-07-16 08:37:27 +08:00
12 lines
224 B
PHP
Executable file
12 lines
224 B
PHP
Executable file
#!/usr/bin/env php
|
|
<?php
|
|
|
|
include __DIR__.'/../vendor/autoload.php';
|
|
|
|
$data = stream_get_contents(STDIN);
|
|
|
|
$start = microtime(true);
|
|
|
|
$lol = Sabre\VObject\Reader::read($data);
|
|
|
|
echo 'time: '.(microtime(true) - $start)."\n";
|