Exemplo n.º 1
0
 /**
  * Add new strings the will be replaced with the seperator
  *
  * @param array $array
  */
 public static function add_array_to_seperator(array $array, $append = true)
 {
     if ($append === true) {
         self::$arrayToSeperator = array_merge(self::$arrayToSeperator, $array);
     }
     self::$arrayToSeperator = $array;
 }