%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/egp/vendor/cebe/markdown/tests/ |
Upload File : |
<?php require(__DIR__ . '/../Parser.php'); require(__DIR__ . '/../Markdown.php'); $markdown = ''; $markdown = file_get_contents(__DIR__ . '/markdown-data/specs.md'); //$markdown = file_get_contents(__DIR__ . '/github-data/github-sample.md'); //ini_set('xhprof.output_dir', __DIR__ . '/xhprof'); // http://de3.php.net/manual/en/xhprof.examples.php xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY); for ($n = 0; $n < 100; $n++) { $pd = new \cebe\markdown\Markdown(); $pd->parse($markdown); } $xhprof_data = xhprof_disable(); $XHPROF_ROOT = __DIR__ . '/../vendor/facebook/xhprof/'; include_once $XHPROF_ROOT . '/xhprof_lib/utils/xhprof_lib.php'; include_once $XHPROF_ROOT . '/xhprof_lib/utils/xhprof_runs.php'; $xhprof_runs = new XHProfRuns_Default(); $run_id = $xhprof_runs->save_run($xhprof_data, "xhprof_testing"); echo "http://localhost/xhprof/xhprof_html/index.php?run={$run_id}&source=xhprof_testing\n";