@@ -491,7 +491,7 @@ static void php_xmlreader_set_relaxng_schema(INTERNAL_FUNCTION_PARAMETERS, int t
491
491
#endif
492
492
}
493
493
494
- /* {{{ proto boolean close()
494
+ /* {{{ proto boolean XMLReader:: close()
495
495
Closes xmlreader - current frees resources until xmlTextReaderClose is fixed in libxml */
496
496
PHP_METHOD (xmlreader , close )
497
497
{
@@ -508,15 +508,15 @@ PHP_METHOD(xmlreader, close)
508
508
RETURN_TRUE ;
509
509
}
510
510
511
- /* {{{ proto string getAttribute(string name)
511
+ /* {{{ proto string XMLReader:: getAttribute(string name)
512
512
Get value of an attribute from current element */
513
513
PHP_METHOD (xmlreader , getAttribute )
514
514
{
515
515
php_xmlreader_string_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderGetAttribute );
516
516
}
517
517
/* }}} */
518
518
519
- /* {{{ proto string getAttributeNo(int index)
519
+ /* {{{ proto string XMLReader:: getAttributeNo(int index)
520
520
Get value of an attribute at index from current element */
521
521
PHP_METHOD (xmlreader , getAttributeNo )
522
522
{
@@ -545,7 +545,7 @@ PHP_METHOD(xmlreader, getAttributeNo)
545
545
}
546
546
/* }}} */
547
547
548
- /* {{{ proto string getAttributeNs(string name, string namespaceURI)
548
+ /* {{{ proto string XMLReader:: getAttributeNs(string name, string namespaceURI)
549
549
Get value of a attribute via name and namespace from current element */
550
550
PHP_METHOD (xmlreader , getAttributeNs )
551
551
{
@@ -579,7 +579,7 @@ PHP_METHOD(xmlreader, getAttributeNs)
579
579
}
580
580
/* }}} */
581
581
582
- /* {{{ proto boolean getParserProperty(int property)
582
+ /* {{{ proto boolean XMLReader:: getParserProperty(int property)
583
583
Indicates wether given property (one of the parser option constants) is set or not on parser */
584
584
PHP_METHOD (xmlreader , getParserProperty )
585
585
{
@@ -606,7 +606,7 @@ PHP_METHOD(xmlreader, getParserProperty)
606
606
}
607
607
/* }}} */
608
608
609
- /* {{{ proto boolean isValid()
609
+ /* {{{ proto boolean XMLReader:: isValid()
610
610
Returns boolean indicating if parsed document is valid or not.
611
611
Must set XMLREADER_LOADDTD or XMLREADER_VALIDATE parser option prior to the first call to read
612
612
or this method will always return FALSE */
@@ -616,15 +616,15 @@ PHP_METHOD(xmlreader, isValid)
616
616
}
617
617
/* }}} */
618
618
619
- /* {{{ proto string lookupNamespace(string prefix)
619
+ /* {{{ proto string XMLReader:: lookupNamespace(string prefix)
620
620
Return namespaceURI for associated prefix on current node */
621
621
PHP_METHOD (xmlreader , lookupNamespace )
622
622
{
623
623
php_xmlreader_string_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderLookupNamespace );
624
624
}
625
625
/* }}} */
626
626
627
- /* {{{ proto boolean moveToAttribute(string name)
627
+ /* {{{ proto boolean XMLReader:: moveToAttribute(string name)
628
628
Positions reader at specified attribute - Returns TRUE on success and FALSE on failure */
629
629
PHP_METHOD (xmlreader , moveToAttribute )
630
630
{
@@ -656,7 +656,7 @@ PHP_METHOD(xmlreader, moveToAttribute)
656
656
}
657
657
/* }}} */
658
658
659
- /* {{{ proto boolean moveToAttributeNo(int index)
659
+ /* {{{ proto boolean XMLReader:: moveToAttributeNo(int index)
660
660
Positions reader at attribute at spcecified index.
661
661
Returns TRUE on success and FALSE on failure */
662
662
PHP_METHOD (xmlreader , moveToAttributeNo )
@@ -683,7 +683,7 @@ PHP_METHOD(xmlreader, moveToAttributeNo)
683
683
}
684
684
/* }}} */
685
685
686
- /* {{{ proto boolean moveToAttributeNs(string name, string namespaceURI)
686
+ /* {{{ proto boolean XMLReader:: moveToAttributeNs(string name, string namespaceURI)
687
687
Positions reader at attribute spcified by name and namespaceURI.
688
688
Returns TRUE on success and FALSE on failure */
689
689
PHP_METHOD (xmlreader , moveToAttributeNs )
@@ -716,31 +716,31 @@ PHP_METHOD(xmlreader, moveToAttributeNs)
716
716
}
717
717
/* }}} */
718
718
719
- /* {{{ proto boolean moveToElement()
719
+ /* {{{ proto boolean XMLReader:: moveToElement()
720
720
Moves the position of the current instance to the node that contains the current Attribute node. */
721
721
PHP_METHOD (xmlreader , moveToElement )
722
722
{
723
723
php_xmlreader_no_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderMoveToElement );
724
724
}
725
725
/* }}} */
726
726
727
- /* {{{ proto boolean moveToFirstAttribute()
727
+ /* {{{ proto boolean XMLReader:: moveToFirstAttribute()
728
728
Moves the position of the current instance to the first attribute associated with the current node. */
729
729
PHP_METHOD (xmlreader , moveToFirstAttribute )
730
730
{
731
731
php_xmlreader_no_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderMoveToFirstAttribute );
732
732
}
733
733
/* }}} */
734
734
735
- /* {{{ proto boolean moveToNextAttribute()
735
+ /* {{{ proto boolean XMLReader:: moveToNextAttribute()
736
736
Moves the position of the current instance to the next attribute associated with the current node. */
737
737
PHP_METHOD (xmlreader , moveToNextAttribute )
738
738
{
739
739
php_xmlreader_no_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderMoveToNextAttribute );
740
740
}
741
741
/* }}} */
742
742
743
- /* {{{ proto boolean read()
743
+ /* {{{ proto boolean XMLReader:: read()
744
744
Moves the position of the current instance to the next node in the stream. */
745
745
PHP_METHOD (xmlreader , read )
746
746
{
@@ -765,7 +765,7 @@ PHP_METHOD(xmlreader, read)
765
765
}
766
766
/* }}} */
767
767
768
- /* {{{ proto boolean next([string localname])
768
+ /* {{{ proto boolean XMLReader:: next([string localname])
769
769
Moves the position of the current instance to the next node in the stream. */
770
770
PHP_METHOD (xmlreader , next )
771
771
{
@@ -807,7 +807,7 @@ PHP_METHOD(xmlreader, next)
807
807
}
808
808
/* }}} */
809
809
810
- /* {{{ proto boolean open(string URI)
810
+ /* {{{ proto boolean XMLReader:: open(string URI)
811
811
Sets the URI that the the XMLReader will parse. */
812
812
PHP_METHOD (xmlreader , open )
813
813
{
@@ -884,7 +884,7 @@ PHP_METHOD(xmlreader, resetState)
884
884
}
885
885
*/
886
886
887
- /* {{{ proto boolean setParserProperty(int property, boolean value)
887
+ /* {{{ proto boolean XMLReader:: setParserProperty(int property, boolean value)
888
888
Sets parser property (one of the parser option constants).
889
889
Properties must be set after open() or XML() and before the first read() is called */
890
890
PHP_METHOD (xmlreader , setParserProperty )
@@ -913,23 +913,23 @@ PHP_METHOD(xmlreader, setParserProperty)
913
913
}
914
914
/* }}} */
915
915
916
- /* {{{ proto boolean setRelaxNGSchemaSource(string filename)
916
+ /* {{{ proto boolean XMLReader:: setRelaxNGSchemaSource(string filename)
917
917
Sets the string that the the XMLReader will parse. */
918
918
PHP_METHOD (xmlreader , setRelaxNGSchema )
919
919
{
920
920
php_xmlreader_set_relaxng_schema (INTERNAL_FUNCTION_PARAM_PASSTHRU , XMLREADER_LOAD_FILE );
921
921
}
922
922
/* }}} */
923
923
924
- /* {{{ proto boolean setRelaxNGSchemaSource(string source)
924
+ /* {{{ proto boolean XMLReader:: setRelaxNGSchemaSource(string source)
925
925
Sets the string that the the XMLReader will parse. */
926
926
PHP_METHOD (xmlreader , setRelaxNGSchemaSource )
927
927
{
928
928
php_xmlreader_set_relaxng_schema (INTERNAL_FUNCTION_PARAM_PASSTHRU , XMLREADER_LOAD_STRING );
929
929
}
930
930
/* }}} */
931
931
932
- /* {{{ proto boolean XML(string source)
932
+ /* {{{ proto boolean XMLReader:: XML(string source)
933
933
Sets the string that the the XMLReader will parse. */
934
934
PHP_METHOD (xmlreader , XML )
935
935
{
@@ -1005,7 +1005,7 @@ PHP_METHOD(xmlreader, XML)
1005
1005
}
1006
1006
/* }}} */
1007
1007
1008
- /* {{{ proto boolean expand()
1008
+ /* {{{ proto boolean XMLReader:: expand()
1009
1009
Moves the position of the current instance to the next node in the stream. */
1010
1010
PHP_METHOD (xmlreader , expand )
1011
1011
{
0 commit comments