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

Function mapscript_report_php_error

mapscript/php/mapscript_error.c:82–94  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

80}
81
82void mapscript_report_php_error(int error_type, char *format TSRMLS_DC, ...)
83{
84 va_list args;
85 char message[MAX_EXCEPTION_MSG];
86#ifdef ZTS
87 va_start(args, TSRMLS_C);
88#else
89 va_start(args, format);
90#endif
91 vsprintf(message, format, args);
92 va_end(args);
93 php_error_docref(NULL TSRMLS_CC, error_type, "%s,", message);
94}
95
96void mapscript_report_mapserver_error(int error_type TSRMLS_DC)
97{

Callers 8

image.cFile · 0.85
symbol.cFile · 0.85
php_mapscript.cFile · 0.85
class.cFile · 0.85
layer.cFile · 0.85
map.cFile · 0.85
style.cFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected