...in between is data...
<?php
  function character_data($parser, $data) {
    if (!empty($this->item)) {
      // only add pre-declared character data elements
      if (isset($this->item->{$this->tag})) {
        $this->item->{$this->tag} .= trim($data);
      }
    }
  }
?>