php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.rpm-get-tag.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Retrieves a header tag from an RPM file				  				 				 				 rpm_close				 rpm_is_valid				 RPM Reader Functions				 PHP Manual								 				  rpm_get_tag				  (PECL rpmreader:0.1-0.3)rpm_get_tag — Retrieves a header tag from an RPM file								 				 				  Description				  				   mixed rpm_get_tag				    ( resource $rpmr				   , int $tagnum				   )								  				    rpm_get_tag() will retrieve a given tag from				    the RPM file's header and return it.				  				 								 				  Parameters				  				   								    								     rpmr												     								      				        A file pointer resource successfully opened by				        rpm_open().				      				     								    								    								     tagnum												     								      				        The tag number to retrieve from the RPM header.  This value				        can be specified using the list of constants defined by this				        module.				      				     								    								   								  				 								 				  Return Values				  				    The return value can be of various types depending on the				    tagnum				 supplied to the function.				  				 								 				  Examples				  				   				    Example #1 rpm_get_tag() example				    								<?php$file = "/path/to/file.rpm";$rpmr = rpm_open($file);$name = rpm_get_tag($rpmr, RPMREADER_NAME);echo "$name<br>\n";rpm_close($rpmr);?>												    								   				  				 								 				  See Also				  				   				    rpm_open()				    rpm_close()				   				  				 												 rpm_close				 rpm_is_valid				 RPM Reader Functions				 PHP Manual											

相关资源