Function ipActionUrl()
Description:
string
ipActionUrl
(
array
$query
)
Generate URL-encoded query string
Package: ImpressPagesParameters:
array |
$query |
Associative (or indexed) array. |
Return values:
string
|
URL string. |
<?php $query = array('product' => 'shoes', 'productId' => 123); echo ipActionUrl($query);
The sample code above outputs URL http://www.example.com/?product=shoes&productId=123.