GNU PO file reader and writer.
Author: Michael Wallner (mike@php.net)
Inheritance: extends TGettext
示例#1
0
 /**
  * toPO
  *
  * @access  protected
  * @return  object      File_Gettext_PO
  */
 function toPO()
 {
     include_once dirname(__FILE__) . '/PO.php';
     $PO = new TGettext_PO();
     $PO->fromArray($this->toArray());
     return $PO;
 }