Accords-CMS/php/tools/admin.php

26 lines
600 B
PHP
Raw Normal View History

2022-01-01 12:12:34 +00:00
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
function unixToDate($unixTime) {
return date('Y-m-d', $unixTime);
}
function sluggify($string) {
$string = strtolower($string);
$string = str_replace(' ', '-', $string);
$string = str_split($string);
$result = "";
$slugAcceptable = "abcdefghijklmnopqrstuvwxyz0123456789-";
foreach ($string as $c) {
if (stripos($slugAcceptable, $c) !== false) $result .= $c;
}
$result = trim($result, "-");
return $result;
}
?>