This failed: define('DEFAULT_ROLES', array('guy', 'development team')); Apparently, constants can’t hold arrays. What is the best way to get around this? define('DEFAULT_ROLES', 'guy|development team'); //... $default = explode('|', DEFAULT_ROLES); This...
  • May 6, 2022
  • 0 Comments