php-common-dev/src/index.php
2023-08-11 21:55:16 +09:00

18 lines
388 B
PHP

<?php
$timer_start = microtime(true);// 実行開始速度
require __DIR__ . '/vendor/autoload.php';
$filename = 'openapi.yaml';
$input = file_get_contents($filename);
$result = \Symfony\Component\Yaml\Yaml::parse($input);
$timer_end = microtime(true);// 実行終了速度
$timer = $timer_end - $timer_start;
echo '実行速度:'.ceil($timer*1000)."ms: $timer";