@@ -489,7 +489,7 @@ static void php_xmlreader_set_relaxng_schema(INTERNAL_FUNCTION_PARAMETERS, int t
489
489
#endif
490
490
}
491
491
492
- /* {{{ proto boolean close()
492
+ /* {{{ proto boolean XMLReader:: close()
493
493
Closes xmlreader - current frees resources until xmlTextReaderClose is fixed in libxml */
494
494
PHP_METHOD (xmlreader , close )
495
495
{
@@ -506,15 +506,15 @@ PHP_METHOD(xmlreader, close)
506
506
RETURN_TRUE ;
507
507
}
508
508
509
- /* {{{ proto string getAttribute(string name)
509
+ /* {{{ proto string XMLReader:: getAttribute(string name)
510
510
Get value of an attribute from current element */
511
511
PHP_METHOD (xmlreader , getAttribute )
512
512
{
513
513
php_xmlreader_string_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderGetAttribute );
514
514
}
515
515
/* }}} */
516
516
517
- /* {{{ proto string getAttributeNo(int index)
517
+ /* {{{ proto string XMLReader:: getAttributeNo(int index)
518
518
Get value of an attribute at index from current element */
519
519
PHP_METHOD (xmlreader , getAttributeNo )
520
520
{
@@ -543,7 +543,7 @@ PHP_METHOD(xmlreader, getAttributeNo)
543
543
}
544
544
/* }}} */
545
545
546
- /* {{{ proto string getAttributeNs(string name, string namespaceURI)
546
+ /* {{{ proto string XMLReader:: getAttributeNs(string name, string namespaceURI)
547
547
Get value of a attribute via name and namespace from current element */
548
548
PHP_METHOD (xmlreader , getAttributeNs )
549
549
{
@@ -577,7 +577,7 @@ PHP_METHOD(xmlreader, getAttributeNs)
577
577
}
578
578
/* }}} */
579
579
580
- /* {{{ proto boolean getParserProperty(int property)
580
+ /* {{{ proto boolean XMLReader:: getParserProperty(int property)
581
581
Indicates wether given property (one of the parser option constants) is set or not on parser */
582
582
PHP_METHOD (xmlreader , getParserProperty )
583
583
{
@@ -605,7 +605,7 @@ PHP_METHOD(xmlreader, getParserProperty)
605
605
}
606
606
/* }}} */
607
607
608
- /* {{{ proto boolean isValid()
608
+ /* {{{ proto boolean XMLReader:: isValid()
609
609
Returns boolean indicating if parsed document is valid or not.
610
610
Must set XMLREADER_LOADDTD or XMLREADER_VALIDATE parser option prior to the first call to read
611
611
or this method will always return FALSE */
@@ -615,15 +615,15 @@ PHP_METHOD(xmlreader, isValid)
615
615
}
616
616
/* }}} */
617
617
618
- /* {{{ proto string lookupNamespace(string prefix)
618
+ /* {{{ proto string XMLReader:: lookupNamespace(string prefix)
619
619
Return namespaceURI for associated prefix on current node */
620
620
PHP_METHOD (xmlreader , lookupNamespace )
621
621
{
622
622
php_xmlreader_string_arg (INTERNAL_FUNCTION_PARAM_PASSTHRU , xmlTextReaderLookupNamespace );
623
623
}
624
624
/* }}} */
625
625
626
- /* {{{ proto boolean moveToAttribute(string name)
626
+ /* {{{ proto boolean XMLReader:: moveToAttribute(string name)
627
627
Positions reader at specified attribute - Returns TRUE on success and FALSE on failure */
628
628
PHP_METHOD (xmlreader , moveToAttribute )
629
629
{
@@ -655,7 +655,7 @@ PHP_METHOD(xmlreader, moveToAttribute)
655
655
}
656
656
/* }}} */
657
657
658
- /* {{{ proto boolean moveToAttributeNo(int index)
658
+ /* {{{ proto boolean XMLReader:: moveToAttributeNo(int index)
659
659
Positions reader at attribute at spcecified index.
660
660
Returns TRUE on success and FALSE on failure */
661
661
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 [, string encoding [, int options]])
810
+ /* {{{ proto boolean XMLReader:: open(string URI [, string encoding [, int options]])
811
811
Sets the URI that the the XMLReader will parse. */
812
812
PHP_METHOD (xmlreader , open )
813
813
{
@@ -889,7 +889,7 @@ PHP_METHOD(xmlreader, readString)
889
889
}
890
890
#endif
891
891
892
- /* {{{ proto boolean setParserProperty(int property, boolean value)
892
+ /* {{{ proto boolean XMLReader:: setParserProperty(int property, boolean value)
893
893
Sets parser property (one of the parser option constants).
894
894
Properties must be set after open() or XML() and before the first read() is called */
895
895
PHP_METHOD (xmlreader , setParserProperty )
@@ -919,15 +919,15 @@ PHP_METHOD(xmlreader, setParserProperty)
919
919
}
920
920
/* }}} */
921
921
922
- /* {{{ proto boolean setRelaxNGSchemaSource(string filename)
922
+ /* {{{ proto boolean XMLReader:: setRelaxNGSchemaSource(string filename)
923
923
Sets the string that the the XMLReader will parse. */
924
924
PHP_METHOD (xmlreader , setRelaxNGSchema )
925
925
{
926
926
php_xmlreader_set_relaxng_schema (INTERNAL_FUNCTION_PARAM_PASSTHRU , XMLREADER_LOAD_FILE );
927
927
}
928
928
/* }}} */
929
929
930
- /* {{{ proto boolean setRelaxNGSchemaSource(string source)
930
+ /* {{{ proto boolean XMLReader:: setRelaxNGSchemaSource(string source)
931
931
Sets the string that the the XMLReader will parse. */
932
932
PHP_METHOD (xmlreader , setRelaxNGSchemaSource )
933
933
{
@@ -944,7 +944,7 @@ XMLPUBFUN int XMLCALL
944
944
xmlSchemaPtr schema);
945
945
*/
946
946
947
- /* {{{ proto boolean XML(string source [, string encoding [, int options]])
947
+ /* {{{ proto boolean XMLReader:: XML(string source [, string encoding [, int options]])
948
948
Sets the string that the the XMLReader will parse. */
949
949
PHP_METHOD (xmlreader , XML )
950
950
{
@@ -1013,7 +1013,7 @@ PHP_METHOD(xmlreader, XML)
1013
1013
}
1014
1014
/* }}} */
1015
1015
1016
- /* {{{ proto boolean expand()
1016
+ /* {{{ proto boolean XMLReader:: expand()
1017
1017
Moves the position of the current instance to the next node in the stream. */
1018
1018
PHP_METHOD (xmlreader , expand )
1019
1019
{
0 commit comments