X-Git-Url: https://git.cweiske.de/phinde.git/blobdiff_plain/d6c817be8dfb9d41ea3f19cecd90619cde97209d..f98e891b454e5677bdf61f476e366b01af713b50:/src/phinde/Helper.php diff --git a/src/phinde/Helper.php b/src/phinde/Helper.php index 43345ba..aeb8ba5 100644 --- a/src/phinde/Helper.php +++ b/src/phinde/Helper.php @@ -31,6 +31,12 @@ class Helper return 'http://' . $url; } + public static function removeAnchor($url) + { + $parts = explode('#', $url, 2); + return $parts[0]; + } + public static function sanitizeTitle($str) { return trim( @@ -59,5 +65,26 @@ class Helper return $prot . '://' . $_SERVER['HTTP_HOST'] . $path; } + static $timer = []; + + public static function start($timer = 'timer') + { + static::$timer[$timer] = microtime(true); + } + + public static function stop($timer = 'timer') + { + $diff = microtime(true) - static::$timer[$timer]; + echo '+timer: ' . number_format($diff, 3) . 'ms ' . $timer . "\n"; + } + + public static function baseDoc($url) + { + $esDoc = new \stdClass(); + $esDoc->status = new \stdClass(); + $esDoc->url = $url; + $esDoc->schemalessUrl = Helper::noSchema($url); + return $esDoc; + } } ?>