I wonder what it means when someone uses $_GET['path']
? What would be path
? I thought $_GET
would only get information from the URL.
public function get_url_data () {
// Verifica se o parâmetro path foi enviado
if ( isset( $_GET['path'] ) ) {
// Captura o valor de $_GET['path']
$path = $_GET['path'];
// Limpa os dados
$path = rtrim($path, '/');
$path = filter_var($path, FILTER_SANITIZE_URL);
// Cria um array de parâmetros
$path = explode('/', $path);
// Configura as propriedades
$this->controlador = chk_array( $path, 0 );
$this->controlador .= '-controller';
$this->acao = chk_array( $path, 1 );
// Configura os parâmetros
if ( chk_array( $path, 2 ) ) {
unset( $path[0] );
unset( $path[1] );
// Os parâmetros sempre virão após a ação
$this->parametros = array_values( $path );
}Fim if
If possible inform what is path
.