PHP Salt


A little dash of PHP... my collection of php functions

Version: 2.33.2
Last Build: December 29, 2023 20:28pm (PST)

Main Menu

Home

Get PHP Salt


The Functions

array
db
file
graph
html
mail
math
misc
mobile
script
string
system
time
web
psQueryStr()
Creates url query string from array


Description:


Use this function to compile a url query string from an array.




Usage:

$str = psQueryStr($ary);



Example:

        $p['color'] = "blue";
$p['sex'] = "male";
$p['name'] = "john doe";

$s = psQueryStr($p);
print "$s\r\n";

Output:
?color=blue&sex=male&name=john+doe






Code:

function psQueryStr($ary)
{
$res = "?";
foreach ($ary as $key=>$val)
{
$val = urlencode($val);
$val = str_replace(" ","+",$val);
$res .= $key . "=" . $val . "&";
}
$res = substr($res,0,strlen($res)-1);
return $res;
}


Changlelog:


See Also

And a shot out to:

PHP - php.net
Fedora Server - getfedora.com
Shameless ads to pay for site