1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Config

Discussion in 'Development' started by Teamblocket, Oct 21, 2017.

  1. Teamblocket

    Teamblocket Zombie

    Messages:
    301
    GitHub:
    teamblocket
    How to remove values from config?
     
  2. jasonwynn10

    jasonwynn10 Moderator Poggit Reviewer

    Messages:
    1,489
    GitHub:
    jasonwynn10
    PHP:
    $arr $config->getAll();
    $key "value to delete here as string or integer";
    unset(
    $arr[$key]);
    $config->setAll($arr);
    $config->save(true);
     
    Teamblocket likes this.
  3. Teamblocket

    Teamblocket Zombie

    Messages:
    301
    GitHub:
    teamblocket
    Thanks!
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.