Saltar al contenido

_SERVER request_uri en ejemplo de código php

Si encuentras algún error con tu código o trabajo, recuerda probar siempre en un entorno de testing antes aplicar el código al trabajo final.

Ejemplo: función de servidor php

// PHP $_SERVER['...']; method// PHP file nameecho'PHP file name: '.$_SERVER['PHP_SELF'].'
'
;// Server nameecho'Server name: '.$_SERVER['SERVER_NAME'].'
'
;// HTTP hostecho'HTTP host: '.$_SERVER['HTTP_HOST'].'
'
;// Refering linkecho'Refering link: '.$_SERVER['HTTP_REFERER'].'
'
;// User agentecho'User agent: '.$_SERVER['HTTP_USER_AGENT'].'
'
;// Script nameecho'Script name: '.$_SERVER['SCRIPT_NAME'];// The rest is optionalif($_SERVER['PHP_SELF']=='/filename.php')//If there is no folderecho'No folder'.$_SERVER['PHP_SELF'];else// Echo the name of the folder containing the PHP fileecho'PHP file name: '.$_SERVER['PHP_SELF'];// The same if statements can be used for the script nameif($_SERVER['SCRIPT_NAME']=='/filename.php')// If there is no folderecho'No folder'.$_SERVER['SCRIPT_NAME'];else// Echo the name of the folder containing the PHP fileecho'PHP file name: '.$_SERVER['SCRIPT_NAME'];echo'More from me...';// I hope you found this helpful! ?>

valoraciones y reseñas

Ten en cuenta dar difusión a este tutorial si te valió la pena.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *