Файловый менеджер - Редактировать - /var/www/vhosts/studiocol.dev1.mndrn.cloud/funcs/third/filesystem.php
Назад
<?php /* ---------- Gyural 1.8 ---------- Filename: /funcs/third/filesystem.php Version: 1.8 Author: federicoq <f.quagliotto@mandarinoadv.com> Date: 11/10/13 ---------------------- Collection: Filesystem ---------------------- */ function filesystem__rrmdir($dir) { if (is_dir($dir)) { $objects = scandir($dir); foreach ($objects as $object) { if ($object != "." && $object != "..") { if (filetype($dir."/".$object) == "dir") rrmdir($dir."/".$object); else unlink($dir."/".$object); } } reset($objects); rmdir($dir); } } // @ Andrea Rufo - Slug function filesystem__slug($file, $maxLength = 50) { $info = pathinfo($file['name']); $basename = $info['basename']; $ext = $info['extension']; $result = CallFunction('strings', 'slug', $basename); $result = date('U').'-'.$result.'.'.$ext; return $result; } ?>
| ver. 1.4 |
Github
|
.
| PHP 8.2.5 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка