parts[] = sprintf('%s%020u', $prefix, $value); return $this; } public function addString($value) { if (strlen($value) && (strpos($value, "\0") !== false)) { throw new Exception( pht( 'String components of a sort vector must not contain NULL bytes.')); } $this->parts[] = $value; return $this; } public function __toString() { return implode("\0", $this->parts); } /** * This allows you to sort a list of sort vectors using @{function:msortv}. */ public function getSelf() { return $this; } }