D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
opt
/
psa
/
phpMyAdmin
/
vendor
/
thecodingmachine
/
safe
/
generated
/
Filename :
rpminfo.php
back
Copy
<?php namespace Safe; use Safe\Exceptions\RpminfoException; /** * Add an additional retrieved tag in subsequent queries. * * @param int $tag One of RPMTAG_* constant, see the rpminfo constants page. * @throws RpminfoException * */ function rpmaddtag(int $tag): void { error_clear_last(); $result = \rpmaddtag($tag); if ($result === false) { throw RpminfoException::createFromPhpError(); } }