⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 comment.pm

📁 网页留言本,比一般的留言簿管用
💻 PM
字号:
# $Id: Comment.pm 4532 2004-05-11 05:15:40Z ezra $package XML::XPath::Node::Comment;use strict;use vars qw/@ISA/;@ISA = ('XML::XPath::Node');package XML::XPath::Node::CommentImpl;use vars qw/@ISA/;@ISA = ('XML::XPath::NodeImpl', 'XML::XPath::Node::Comment');use XML::XPath::Node ':node_keys';sub new {    my $class = shift;    my ($comment) = @_;            my $pos = XML::XPath::Node->nextPos;                my @vals;        @vals[node_global_pos, node_comment] =                ($pos, $comment);    my $self = \@vals;            bless $self, $class;}sub getNodeType { COMMENT_NODE }sub isCommentNode { 1; }sub getNodeValue {    return shift->[node_comment];}sub getData {    shift->getNodeValue;}sub setNodeValue {    shift->[node_comment] = shift;}sub _to_sax {    my $self = shift;    my ($doch, $dtdh, $enth) = @_;        $doch->comment( { Data => $self->getValue } );}sub comment_escape {    my $data = shift;    $data =~ s/--/&#45;&#45;/g;    return $data;}sub string_value {    my $self = shift;    return $self->[node_comment];}sub toString {    my $self = shift;    return '<!--' . comment_escape($self->[node_comment]) . '-->';}1;__END__=head1 NAMEComment - an XML comment: <!--comment-->=head1 API=head2 new ( data )Create a new comment node.=head2 getValue / getDataReturns the value in the comment=head2 toStringReturns the comment with -- encoded as a numeric entity (if itexists in the comment text).=cut

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -