Tags
Table of Contents
Properties
- $parser : mixed
- $cachefile : mixed
- String filename for cache
- $current_data : string
- String Current data value.
- $current_key : mixed
- String Current tu -> tuid value.
- $current_language : string
- String Current tuv -> xml:lang value.
- $language : string
- String ISO language identifier (a two- or three-letter code)
- $resource : array<string|int, mixed>
- Array used to contain key-translation couples.
- $segdata : bool
- Boolean value true when we are inside a seg element
Methods
- __construct() : mixed
- Class constructor.
- __destruct() : mixed
- Class destructor; resets $resource array.
- getResource() : array<string|int, mixed>
- Returns the resource array containing the translated word/sentences.
- endElementHandler() : mixed
- Sets the end element handler function for the XML parser parser.end_element_handler.
- segContentHandler() : mixed
- Sets the character data handler function for the XML parser parser.handler.
- startElementHandler() : mixed
- Sets the start element handler function for the XML parser parser.start_element_handler.
Properties
$parser
public mixed $parser
$cachefile
String filename for cache
private mixed $cachefile = ''
Tags
$current_data
String Current data value.
private string $current_data = ''
Tags
$current_key
String Current tu -> tuid value.
private mixed $current_key = ''
Tags
$current_language
String Current tuv -> xml:lang value.
private string $current_language =
''
Tags
$language
String ISO language identifier (a two- or three-letter code)
private string $language = ''
Tags
$resource
Array used to contain key-translation couples.
private array<string|int,
mixed> $resource = []
Tags
$segdata
Boolean value true when we are inside a seg element
private bool $segdata = \false
Tags
Methods
__construct()
Class constructor.
public __construct( $tmxfile,
$language[,
$cachefile
= ''
]) : mixed
Parameters
__destruct()
Class destructor; resets $resource array.
public __destruct()
: mixed
getResource()
Returns the resource array containing the translated word/sentences.
public getResource()
: array<string|int,
mixed>
Return values
array<string|int, mixed>endElementHandler()
Sets the end element handler function for the XML parser parser.end_element_handler.
private endElementHandler( $parser,
$name)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
Tags
segContentHandler()
Sets the character data handler function for the XML parser parser.handler.
private segContentHandler( $parser,
$data)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $data :
-
(string) The second parameter, data, contains the character data as a string.
Tags
startElementHandler()
Sets the start element handler function for the XML parser parser.start_element_handler.
private startElementHandler( $parser,
$name,
$attribs)
: mixed
Parameters
- $parser :
-
(resource) The first parameter, parser, is a reference to the XML parser calling the handler.
- $name :
-
(string) The second parameter, name, contains the name of the element for which this handler is called. If case-folding is in effect for this parser, the element name will be in uppercase letters.
- $attribs :
-
(array) The third parameter, attribs, contains an associative array with the element's attributes (if any). The keys of this array are the attribute names, the values are the attribute values. Attribute names are case-folded on the same criteria as element names. Attribute values are not case-folded. The original order of the attributes can be retrieved by walking through attribs the normal way, using each(). The first key in the array was the first attribute, and so on.