Lines Matching refs:docref
983 PHPAPI ZEND_COLD void php_verror(const char *docref, const char *params, int type, const char *form… in php_verror() argument
1078 if (docref && docref[0] == '#') { in php_verror()
1079 docref_target = strchr(docref, '#'); in php_verror()
1080 docref = NULL; in php_verror()
1084 if (!docref && is_function) { in php_verror()
1097 docref = php_strtolower(docref_buf, doclen); in php_verror()
1104 if (docref && is_function && PG(html_errors) && strlen(PG(docref_root))) { in php_verror()
1105 if (strncmp(docref, "http://", 7)) { in php_verror()
1112 ref = estrdup(docref); in php_verror()
1131 docref = docref_buf; in php_verror()
1135 …, 0, "%s [<a href='%s%s%s'>%s</a>]: %s", origin, docref_root, docref, docref_target, docref, buffe… in php_verror()
1137 spprintf(&message, 0, "%s [%s%s%s]: %s", origin, docref_root, docref, docref_target, buffer); in php_verror()
1179 PHPAPI ZEND_COLD void php_error_docref(const char *docref, int type, const char *format, ...) in php_error_docref() argument
1184 php_verror(docref, "", type, format, args); in php_error_docref()
1191 PHPAPI ZEND_COLD void php_error_docref1(const char *docref, const char *param1, int type, const cha… in php_error_docref1() argument
1196 php_verror(docref, param1, type, format, args); in php_error_docref1()
1203 PHPAPI ZEND_COLD void php_error_docref2(const char *docref, const char *param1, const char *param2,… in php_error_docref2() argument
1210 php_verror(docref, params ? params : "...", type, format, args); in php_error_docref2()