Home
last modified time | relevance | path

Searched refs:result (Results 401 – 425 of 737) sorted by relevance

1...<<11121314151617181920>>...30

/PHP-5.3/ext/standard/tests/strings/
H A Dvprintf_variation5.phpt49 $result = vprintf($format, $args_array[$counter-1]);
51 var_dump($result);
H A Dvprintf_variation9.phpt48 $result = vprintf($format, $args_array[$counter-1]);
50 var_dump($result);
/PHP-5.3/ext/intl/tests/
H A Dcollator_compare.phpt14 * Converts comparison result to a character.
48 // Concatenate result strings.
/PHP-5.3/ext/date/tests/
H A Dbug51096.phpt17 $result = date_parse( $test );
18 $rel = $result['relative'];
H A Ddate_parse_variation1.phpt99 $result = date_parse($date);
100 if (is_array($result)) {
101 var_dump($result["errors"]);
103 var_dump($result);
/PHP-5.3/ext/mysqli/tests/
H A Dmysqli_multi_query.phpt50 …if (!preg_match('@Strict Standards: mysqli_next_result\(\): There is no next result set@ismU', $tm…
88 …if (!preg_match('@Strict Standards: mysqli_next_result\(\): There is no next result set@ismU', $tm…
141 printf("[015] Expecting 3 result sets got %d result set[s]\n", $res_num);
/PHP-5.3/ext/standard/
H A Durl_scanner_ex.h44 smart_str result; member
/PHP-5.3/ext/readline/
H A Dreadline.c197 char *result; in PHP_FUNCTION() local
203 result = readline(prompt); in PHP_FUNCTION()
205 if (! result) { in PHP_FUNCTION()
208 RETVAL_STRING(result,1); in PHP_FUNCTION()
209 free(result); in PHP_FUNCTION()
/PHP-5.3/ext/posix/tests/
H A Dposix_getgroups_basic.phpt14 echo "TEST FAILED - array result expected\n";
/PHP-5.3/ext/gd/tests/
H A Dimagechar_basic.phpt15 $result = imagechar($image, 1, 5, 5, 'C', $white);
H A Dimagecharup_basic.phpt15 $result = imagecharup($image, 1, 5, 5, 'C', $white);
H A Dimagestring_basic.phpt15 $result = imagestring($image, 1, 5, 5, 'String Text', $white);
H A Dimagestringup_basic.phpt15 $result = imagestringup($image, 1, 5, 25, 'Str', $white);
H A Dimagechar_error1.phpt13 $result = imagechar('string', 1, 5, 5, 'C', 1);
H A Dimagecharup_error1.phpt13 $result = imagecharup('string', 1, 5, 5, 'C', 1);
H A Dimagestring_error1.phpt13 $result = imagestring('string', 1, 5, 5, 'String', 1);
H A Dimagecolordeallocate_error2.phpt15 $result = imagecolordeallocate('image', $white);
H A Dimagestringup_error1.phpt13 $result = imagestringup('string', 1, 5, 5, 'String', 1);
H A Dimagechar_error2.phpt13 $result = imagechar(tmpfile(), 1, 5, 5, 'C', 1);
H A Dimagechar_error3.phpt13 $result = imagechar($image, 'string', 5, 5, 'C', 1);
H A Dimagechar_error4.phpt13 $result = imagechar($image, 1, 'string', 5, 'C', 1);
/PHP-5.3/Zend/tests/
H A Dbug30394.phpt2 Bug #30394 (Assignment operators yield wrong result with __get/__set)
/PHP-5.3/ext/spl/
H A Dspl_heap.c112 *result = Z_LVAL_P(result_p); in spl_ptr_heap_cmp_cb_helper()
144 zval result; in spl_ptr_heap_zval_max_cmp() local
162 INIT_ZVAL(result); in spl_ptr_heap_zval_max_cmp()
163 compare_function(&result, (zval *)a, (zval *)b TSRMLS_CC); in spl_ptr_heap_zval_max_cmp()
164 return Z_LVAL(result); in spl_ptr_heap_zval_max_cmp()
169 zval result; in spl_ptr_heap_zval_min_cmp() local
187 INIT_ZVAL(result); in spl_ptr_heap_zval_min_cmp()
189 return Z_LVAL(result); in spl_ptr_heap_zval_min_cmp()
194 zval result; in spl_ptr_pqueue_zval_cmp() local
218 INIT_ZVAL(result); in spl_ptr_pqueue_zval_cmp()
[all …]
/PHP-5.3/main/
H A Dphp_ini.c895 PHPAPI int cfg_get_long(const char *varname, long *result) in cfg_get_long() argument
900 *result = 0; in cfg_get_long()
906 *result = Z_LVAL(var); in cfg_get_long()
913 PHPAPI int cfg_get_double(const char *varname, double *result) in cfg_get_double() argument
918 *result = (double) 0; in cfg_get_double()
924 *result = Z_DVAL(var); in cfg_get_double()
931 PHPAPI int cfg_get_string(const char *varname, char **result) in cfg_get_string() argument
936 *result = NULL; in cfg_get_string()
939 *result = Z_STRVAL_P(tmp); in cfg_get_string()
/PHP-5.3/ext/sqlite/libsqlite/src/
H A Dsqlite.h.in102 ** invoked once for each row of the query result. This callback
111 ** columns in the query result. The 3rd parameter to the callback
148 #define SQLITE_OK 0 /* Successful result */
282 ** probably result in a coredump.
301 ** result, this routine remembers each row of the result in memory
305 ** As an example, suppose the query result where this table:
351 void sqlite_free_table(char **result);
474 ** parameter is non-negative, the type of the result will be the
477 ** the result is always text. If datatype==SQLITE_ARGS then the result
509 ** in order to return a NULL result.
[all …]

Completed in 37 milliseconds

1...<<11121314151617181920>>...30