0
What is the function of get_url_data()? what does it do? I looked in php.net and found nothing, just about meta tag.
public function __construct () {
// Obtém os valores do controlador, ação e parâmetros da URL.
// E configura as propriedades da classe.
$this->get_url_data();
It doesn’t seem to be a native function of PHP itself. Where did you see this function? It rather reminds the kind of nomenclature that Wordpress uses.
– Woss
It actually appears to me this way. public Function __Construct() { // Get controller values, action and URL parameters. // E configures class properties. $this->get_url_data();
– sol25lua
Hm, so it’s not a PHP function but a method of this class you’re reading.
– Woss
There’s true I’m sorry I hadn’t attempted it, so I didn’t find it anywhere, thank you.
– sol25lua