Home
last modified time | relevance | path

Searched refs:result (Results 176 – 200 of 737) sorted by relevance

12345678910>>...30

/PHP-5.3/ext/standard/tests/file/
H A Dbug41874_2.phpt13 $result = exec('cd 1:\\non_existant; dir nonexistant');
14 echo "$result";
H A Dbug41874.phpt9 $result = exec('cd 1:\non_existant; dir nonexistant');
10 echo "$result";
/PHP-5.3/ext/pcre/tests/
H A Dbug40909.phpt12 if ($result =preg_match_all($pattern, $context, $match))
15 var_dump($result);
/PHP-5.3/ext/gd/tests/
H A Dimagecolordeallocate_basic.phpt15 $result = imagecolordeallocate($image, $white);
17 var_dump($result);
/PHP-5.3/ext/dom/tests/
H A DDOMDocument_schemaValidateSource_basic.phpt17 $result = $doc->schemaValidateSource($xsd);
18 var_dump($result);
H A DDOMDocument_relaxNGValidate_basic.phpt20 $result = $doc->relaxNGValidate($rng);
21 var_dump($result);
H A DDOMDocument_schemaValidateSource_error4.phpt15 $result = $doc->schemaValidateSource();
16 var_dump($result);
H A DDOMDocument_schemaValidate_error4.phpt15 $result = $doc->schemaValidate();
16 var_dump($result);
/PHP-5.3/ext/standard/
H A Durl_scanner_ex.re246 * HTML stuff to the result buffer.
392 *newlen = ctx->result.len;
393 if (!ctx->result.c) {
396 smart_str_0(&ctx->result);
402 retval = ctx->result.c;
403 ctx->result.c = NULL;
404 ctx->result.len = 0;
425 smart_str_free(&ctx->result);
450 *handled_output = ctx->result.c;
453 ctx->result.c = NULL;
[all …]
H A Dphp_smart_str.h122 #define smart_str_print_unsigned4(buf, num, vartype, result) do { \ argument
130 result = __p; \
134 #define smart_str_print_long4(buf, num, vartype, result) do { \ argument
139 smart_str_print_unsigned4((buf), -(num), vartype, (result)); \
140 *--(result) = '-'; \
142 smart_str_print_unsigned4((buf), (num), vartype, (result)); \
H A Dmetaphone.c35 char *result = 0; in PHP_FUNCTION() local
44 if (metaphone((unsigned char *)str, str_len, phones, &result, 1) == 0) { in PHP_FUNCTION()
45 RETVAL_STRING(result, 0); in PHP_FUNCTION()
47 if (result) { in PHP_FUNCTION()
48 efree(result); in PHP_FUNCTION()
/PHP-5.3/ext/standard/tests/array/
H A Darray_search_variation4.phpt29 //matching "Good" in array(0,"hello"), result:true in loose type check
34 //matching integer 0 in array("this"), result:true in loose type check
39 //matching string "this" in array(0), result:true in loose type check
44 //checking for type FALSE in multidimensional array with loose checking, result:false in loose type…
52 //matching string having integer in beginning, result:true in loose type check
H A Dbug42838.phpt17 $result = array_diff_uassoc($array1, $array2, "key_compare_func");
18 print_r($result);
H A Din_array_variation4.phpt32 //matching "Good" in array(0,"hello"), result:true in loose type check
37 //matching integer 0 in array("this"), result:true in loose type check
42 //matching string "this" in array(0), result:true in loose type check
47 //checking for type FALSE in multidimensional array with loose checking, result:false in loose type…
55 //matching string having integer in beginning, result:true in loose type check
H A Darray_slice_variation10.phpt19 var_dump($result = array_slice($input, 2));
22 echo key($result) . " => " . current($result) . "\n";
H A Darray_values_variation5.phpt19 var_dump($result = array_values($input));
22 echo key($result) . " => " . current($result) . "\n";
/PHP-5.3/ext/tidy/tests/
H A D027.phpt46 $result = $this->getURL('awer');
47 if ($result === null) {
50 var_dump((string)$result);
/PHP-5.3/ext/mysqli/tests/
H A D038.phpt25 $result = mysqli_store_result($link);
26 $num = mysqli_num_fields($result);
27 mysqli_free_result($result);
H A Dbug29311.phpt40 if (($result = $foo[$i]->query("SELECT DATABASE()"))) {
41 $row = $result->fetch_row();
44 $result->close();
H A Dbug42548.phpt2 Bug #42548 PROCEDURE xxx can't return a result set in the given context (works in 5.2.3!!)
39 print "----- next result -----------\n";
68 ----- next result -----------
73 ----- next result -----------
H A D057.phpt26 if ($result = mysqli_query($link, "SELECT * FROM test_store_result")) {
27 mysqli_free_result($result);
53 if ($result = mysqli_query($link, "SELECT * FROM test_store_result")) {
54 $row = mysqli_fetch_row($result);
55 mysqli_free_result($result);
H A D040.phpt23 $result = mysqli_store_result($link);
24 $num = mysqli_num_rows($result);
25 mysqli_free_result($result);
/PHP-5.3/ext/xmlrpc/tests/
H A Dbug50285.phpt25 $result = xmlrpc_server_register_method($server, 'test1', 'test1');
39 $result = xmlrpc_server_register_method($server, 'test2', 'test2');
53 $result = xmlrpc_server_register_method($server, 'test3', 'test3');
67 $result = xmlrpc_server_register_method($server, 'test4', 'test4');
/PHP-5.3/main/
H A Dphp_ini.h32 PHPAPI int cfg_get_long(const char *varname, long *result);
33 PHPAPI int cfg_get_double(const char *varname, double *result);
34 PHPAPI int cfg_get_string(const char *varname, char **result);
/PHP-5.3/ext/standard/tests/strings/
H A Dhtmlentities02.phpt5 $result = (bool)setlocale(LC_CTYPE, "fr_FR.ISO-8859-15", "fr_FR.ISO8859-15", 'fr_FR@euro');
6 if (!$result) {

Completed in 30 milliseconds

12345678910>>...30