I'm doing this, but always the error because of the array, does anyone know how to solve this:
public function Verificar(string $tabela,string $parametros,array ...$usuario) {
$this->Query = $this->Conexao->prepare("SELECT * FROM usuarios WHERE $tabela");
$this->Query->bind_param($parametros,$usuario);
$this->Query->execute();
$this->ResultadoUser = $this->Query->get_result();
return $this->ResultadoUser;
}