MCPcopy Create free account
hub / github.com/MapServer/MapServer / cgirequestObj_getName

Function cgirequestObj_getName

mapscript/php/mapscript_i.c:1494–1501  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1492}
1493
1494char *cgirequestObj_getName(cgiRequestObj *self, int index)
1495{
1496 if (index < 0 || index >= self->NumParams) {
1497 msSetError(MS_CHILDERR, "Invalid index, valid range is [0, %d]", "getName()", self->NumParams-1);
1498 return NULL;
1499 }
1500 return self->ParamNames[index];
1501}
1502
1503char *cgirequestObj_getValue(cgiRequestObj *self, int index)
1504{

Callers 1

owsrequest.cFile · 0.85

Calls 1

msSetErrorFunction · 0.85

Tested by

no test coverage detected