Blame view

sources/3rdparty/sabre/vobject/bin/bench.php 229 Bytes
6d9380f96   Cédric Dupont   Update sources OC...
1
2
3
4
5
6
7
8
9
10
11
12
13
  #!/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) . "
  ";