Developer's Manual  Function Reference  Working with SiteSupra variables  getSupraValue

getSupraValue

Returns value of requested variable stored in supra table.


mixed getSupraValue
(string variable_name)

The function looks for the requested variable_name in the supra table. If the variable_name name is found the function calls gzUnserialize function and returns the result back to script. If variable_name was not found the function returns FALSE.

Example

<?
$var
= getSupraIni('clientData');
suDUMP($var);
?>
Please login to add comments.