Class QueryStringToStruct
java.lang.Object
ortus.boxlang.runtime.bifs.BIF
ortus.boxlang.runtime.bifs.global.string.QueryStringToStruct
-
Field Summary
Fields inherited from class ortus.boxlang.runtime.bifs.BIF
__functionName, __isMemberExecution, asyncService, cacheService, componentService, declaredArguments, functionService, interceptorService, moduleService, runtime
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescription_invoke
(IBoxContext context, ArgumentsScope arguments) Convert a query string to a struct.Methods inherited from class ortus.boxlang.runtime.bifs.BIF
announce, getDeclaredArguments, invoke
-
Constructor Details
-
QueryStringToStruct
public QueryStringToStruct()Constructor
-
-
Method Details
-
_invoke
Convert a query string to a struct. Each key-value pair in the query string is separated by a delimiter. The default delimiter is"&"
Example:
queryStringToStruct( "foo=bar&baz=qux" ); "foo=bar&baz=qux".toStruct();
-