Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

gupnp_service_action_set(3) [php man page]

GUPNP_SERVICE_ACTION_SET(3)						 1					       GUPNP_SERVICE_ACTION_SET(3)

gupnp_service_action_set - Sets the specified action return values

SYNOPSIS
bool gupnp_service_action_set (resource $action, string $name, int $type, mixed $value) DESCRIPTION
Sets the specified action return values. PARAMETERS
o $action - A service action identifier. o $name - The name of the variable to retrieve. o $type - The type of the variable to retrieve. Type can be one of the following values: o GUPNP_TYPE_BOOLEAN - Type of the variable is boolean. o GUPNP_TYPE_INT - Type of the variable is integer. o GUPNP_TYPE_LONG - Type of the variable is long. o GUPNP_TYPE_DOUBLE - Type of the variable is double. o GUPNP_TYPE_FLOAT - Type of the variable is float. o GUPNP_TYPE_STRING - Type of the variable is string. o $value - The value of the variable to retrieve. RETURN VALUES
Returns TRUE on success or FALSE on failure. ERRORS
/EXCEPTIONS Issues E_WARNING with neither not correctly defined type of the variable or the value is not corresponding to the defined type. SEE ALSO
gupnp_service_action_get(3). PHP Documentation Group GUPNP_SERVICE_ACTION_SET(3)

Check Out this Related Man Page

HTTPQUERYSTRING(3)							 1							HTTPQUERYSTRING(3)

The HttpQueryString class

CLASS SYNOPSIS
HttpQueryString HttpQueryStringArrayAccessSerializable o final public HttpQueryString::__construct ([bool $global = true], [mixed $add]) o public mixed HttpQueryString::get NULL ([string $key], [mixed $type], [mixed $defval], [bool $delete = false]) o public HttpQueryString HttpQueryString::mod (mixed $params) o public string HttpQueryString::set (mixed $params) o static public HttpQueryString HttpQueryString::singleton ([bool $global = true]) o public array HttpQueryString::toArray (void ) o public string HttpQueryString::toString (void ) o public bool HttpQueryString::xlate (string $ie, string $oe) CLASS MEMBERS
PROPERTIES
Instance Properties +----------+-----------------------------+---+---+ |Modifiers | | | | | | | | | | | Type | | | | | | | | | | Name | | | | | | | | | | Description | | | | | | | | +----------+-----------------------------+---+---+ | private | | | | | | | | | | | array | | | | | | | | | | queryArray | | | | | | | | | | query parameters | | | | | | | | | private | | | | | | | | | | | string | | | | | | | | | | queryString | | | | | | | | | | serialized query parameters | | | | | | | | +----------+-----------------------------+---+---+ Static Properties +----------+------------------+---+ |Modifiers | | | | | | | | | Type | | | | | | | | Name | | | | | | | | Description | | | | | | +----------+------------------+---+ | private | | | | | | | | | array | | | | | | | | instance | | | | | | | | holds singletons | | | | | | +----------+------------------+---+ PREDEFINED CONSTANTS
+-----+--------------------------------+---+ |Type | | | | | | | | | Name | | | | | | | | Description | | | | | | +-----+--------------------------------+---+ |int | | | | | | | | | TYPE_BOOL | | | | | | | | retrieve query param as bool | | | | | | |int | | | | | | | | | TYPE_INT | | | | | | | | retrieve query param as int | | | | | | |int | | | | | | | | | TYPE_FLOAT | | | | | | | | retrieve query param as float | | | | | | |int | | | | | | | | | TYPE_STRING | | | | | | | | retrieve query param as string | | | | | | |int | | | | | | | | | TYPE_ARRAY | | | | | | | | retrieve query param as array | | | | | | |int | | | | | | | | | TYPE_OBJECT | | | | | | | | retrieve query param as object | | | | | | +-----+--------------------------------+---+ PHP Documentation Group HTTPQUERYSTRING(3)
Man Page