(PECL rpmreader >= 0.3.0)
Returns a string representing the current version of the rpmreader extension
string rpm_version ( void )
rpm_version() will return the current version of the rpmreader extension.
Returns:
rpm_version() will return a string representing the rpmreader version currently loaded in PHP.
Examples:
rpm_version() example
1 2 3 4 5 6 7 | <?php $rpmr_ver = rpm_version(); echo "$rpmr_ver<br />\n" ; ?> |
Please login to continue.