MCPcopy Index your code
hub / github.com/MapServer/MapServer / cgirequestObj_getValue

Function cgirequestObj_getValue

mapscript/php/mapscript_i.c:1503–1510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1501}
1502
1503char *cgirequestObj_getValue(cgiRequestObj *self, int index)
1504{
1505 if (index < 0 || index >= self->NumParams) {
1506 msSetError(MS_CHILDERR, "Invalid index, valid range is [0, %d]", "getValue()", self->NumParams-1);
1507 return NULL;
1508 }
1509 return self->ParamValues[index];
1510}
1511
1512char *cgirequestObj_getValueByName(cgiRequestObj *self, const char *name)
1513{

Callers 1

owsrequest.cFile · 0.85

Calls 1

msSetErrorFunction · 0.85

Tested by

no test coverage detected