Server IP : 184.154.167.98 / Your IP : 18.191.147.146 Web Server : Apache System : Linux pink.dnsnetservice.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 User : puertode ( 1767) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/puertode/public_html/oficios/chido/ |
Upload File : |
<?php $con = new mysqli('localhost', 'puertode_subir', 'Ryogoku21@', 'puertode_uploadfile'); if ($con->connect_errno) { die('fail'); } function file_name($string) { // Tranformamos todo a minusculas $string = strtolower($string); //Rememplazamos caracteres especiales latinos $find = array('á', 'é', 'í', 'ó', 'ú', 'ñ'); $repl = array('a', 'e', 'i', 'o', 'u', 'n'); $string = str_replace($find, $repl, $string); // Añadimos los guiones $find = array(' ', '&', '\r\n', '\n', '+'); $string = str_replace($find, '-', $string); // Eliminamos y Reemplazamos otros carácteres especiales $find = array('/[^a-z0-9\-<>]/', '/[\-]+/', '/<[^>]*>/'); $repl = array('', '-', ''); $string = preg_replace($find, $repl, $string); return $string; }