Searched defs:description (Results 1 - 3 of 3) sorted by relevance
| /PHP_5_5/ext/standard/ |
| H A D | assert.c | 139 /* {{{ proto int assert(string|bool assertion[, string description]) 146 char *compiled_string_description, *description = NULL; local 152 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "Z|s", &assertion, &description, &description_len) == FAILURE) { 173 php_error_docref(NULL TSRMLS_CC, E_RECOVERABLE_ERROR, "Failure evaluating code: %s%s:\"%s\"", PHP_EOL, description, myeval); 228 ZVAL_STRINGL(args[3], SAFE_STRING(description), description_len, 1); 249 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s: \"%s\" failed", description, myeval); 251 php_error_docref(NULL TSRMLS_CC, E_WARNING, "%s failed", description);
|
| /PHP_5_5/ext/mbstring/ |
| H A D | php_mbregex.c | 813 char *description = NULL; local 877 description = zend_make_compiled_string_description("mbregex replace" TSRMLS_CC); 880 description = NULL; 943 if (zend_eval_stringl(eval_buf.c, eval_buf.len, &v, description TSRMLS_CC) == FAILURE) { 944 efree(description); 981 efree(description); 1007 if (description) { 1008 efree(description);
|
| /PHP_5_5/ext/xmlrpc/libxmlrpc/ |
| H A D | xmlrpc.c | 2744 * If one of these fault codes is received, the description string will automatically 2759 simplestring description; local 2760 simplestring_init(&description); 2795 simplestring_add(&description, string); 2798 simplestring_add(&description, "\n\n"); 2800 simplestring_add(&description, fault_string); 2803 if(description.len) { 2806 XMLRPC_VectorAppendString (xOutput, "faultString", description.str, 2807 description.len); 2811 simplestring_free(&description); [all...] |
Completed in 12 milliseconds