0) { $this->type0 = substr($type, 0, $pos); $this->type1 = substr($type, $pos+1); } else { $this->type0 = $type; } $this->properties = array(); } /** * Constructor (PHP4 style, kept for compatibility reasons) * Prepared type0 and type1 properties * @param string $type content type string without auxiliary information */ function ContentType($type) { self::__construct($type); } }