Description
The exec()
method executes a cPanel tag.
Important:
We strongly recommend that you use an API method ( api1()
, api2()
, or uapi()
) or wrapper method instead of this method.
Example
LiveAPI PHP Class
1
2
|
// Execute the feature tag. $cpanel -> exec (feature,1); |
LiveAPI Perl Module
1
2
|
# Execute the feature tag. $cpliveapi -> exec (feature,1); |
Parameters
Parameter |
Type |
Description |
Possible values |
Example |
tag |
string |
The cPanel tag. |
A valid cPanel tag. |
feature |
skip_return |
boolean |
Whether to return output. This parameter defaults to 0. |
|
1 |
Returns
- If the
skip_return
value is0
, the function returns a hash reference of the cPanel tag's output. - If the
skip_return
value is1
, the function does not return output.