cnode() 공개 메소드

Append child node.
public cnode ( JAXLXml $node ) : JAXLXml
$node JAXLXml
리턴 JAXLXml
예제 #1
0
 public function get_publish_item_pkt($service, $node, $item)
 {
     $child = new JAXLXml('pubsub', NS_PUBSUB);
     $child->c('publish', null, array('node' => $node));
     $child->cnode($item);
     return $this->get_iq_pkt($service, $child);
 }