blob: 361ece6887b2e71de25abdd3c316bf1c572b6c41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
require __DIR__ . '/views/tools/untrack/resolve.php';
require __DIR__ . '/views/tools/zeitumstellung/vendor/autoload.php';
function get_faces(){
return json_decode( file_get_contents( __DIR__ . '/views/tools/faces/faces.json' ), true );
}
function str_starts_with( $haystack, $needle ) {
$length = strlen( $needle );
return substr( $haystack, 0, $length ) === $needle;
}
|