Home
last modified time | relevance | path

Searched refs:result (Results 126 – 150 of 780) sorted by relevance

12345678910>>...32

/PHP-5.4/ext/standard/
H A Dstrnatcmp.c108 int fractional, result; in strnatcmp_ex() local
144 result = compare_left(&ap, aend, &bp, bend); in strnatcmp_ex()
146 result = compare_right(&ap, aend, &bp, bend); in strnatcmp_ex()
148 if (result != 0) in strnatcmp_ex()
149 return result; in strnatcmp_ex()
H A Dmd5.c371 result[0] = ctx->a; in PHP_MD5Final()
372 result[1] = ctx->a >> 8; in PHP_MD5Final()
373 result[2] = ctx->a >> 16; in PHP_MD5Final()
374 result[3] = ctx->a >> 24; in PHP_MD5Final()
375 result[4] = ctx->b; in PHP_MD5Final()
376 result[5] = ctx->b >> 8; in PHP_MD5Final()
377 result[6] = ctx->b >> 16; in PHP_MD5Final()
378 result[7] = ctx->b >> 24; in PHP_MD5Final()
379 result[8] = ctx->c; in PHP_MD5Final()
380 result[9] = ctx->c >> 8; in PHP_MD5Final()
[all …]
/PHP-5.4/ext/pdo/tests/
H A Dpdo_035.phpt15 $result = $stmt->fetch(PDO::FETCH_LAZY);
17 echo get_class($result), "\n";
18 var_dump(get_parent_class($result));
/PHP-5.4/ext/standard/tests/general_functions/
H A Dget_extension_funcs_basic.phpt13 $result = get_extension_funcs("standard");
14 var_dump(gettype($result));
15 var_dump(in_array("cos", $result));
/PHP-5.4/ext/mysqli/tests/
H A Dbug66124.phpt51 $result = $link->query($table_select);
53 if ($result){
54 while ($row = $result->fetch_assoc()) {
80 $result = $link->query($table_select);
82 if ($result){
83 while ($row = $result->fetch_assoc()) {
H A D049.phpt17 $result = $mysql->query("SELECT DATABASE()");
18 $row = $result->fetch_row();
19 $result->close();
H A D014.phpt45 if (!$result = mysqli_query($link, "SELECT * FROM test"))
48 printf("Num_of_rows=%d\n", mysqli_num_rows($result));
49 if (!$row = mysqli_fetch_row($result))
52 mysqli_free_result($result);
65 if (!$result = mysqli_query($link, "SELECT * FROM test"))
68 if (!$row = mysqli_fetch_row($result))
71 mysqli_free_result($result);
H A Dbug33491.phpt2 Bug #33491 (extended mysqli class crashes when result is not object)
16 $result = parent::query($query);
17 $result->fetch_row(); // <- Here be crash
/PHP-5.4/ext/mbstring/libmbfl/tests/
H A Dconv_kana.c29 mbfl_string string, result; in main() local
140 mbfl_ja_jp_hantozen(&string, &result, mode); in main()
141 hexdump(&result); in main()
142 mbfl_string_clear(&result); in main()
H A Dstrcut.c67 mbfl_string result; in main() local
103 if (mbfl_strcut(&string, &result, offset, length)) { in main()
104 hexdump(&result); in main()
105 mbfl_string_clear(&result); in main()
/PHP-5.4/ext/date/tests/
H A Dbug20382-1.phpt2 Bug #20382 [1] (strtotime ("Monday", $date) produces wrong result on DST changeover)
11 echo "result=". date("l Y-m-d H:i:s T", $strtotime_timestamp). "\n";
16 result=Monday 2004-11-01 00:00:00 CET
/PHP-5.4/ext/pgsql/tests/
H A D22pg_fetch_object.phpt20 $result = pg_query($db, $sql) or die('Cannot qeury db');
21 $rows = pg_num_rows($result);
23 var_dump(pg_fetch_object($result, NULL, 'test_class', array(1, 2)));
/PHP-5.4/ext/standard/tests/time/
H A D001.phpt14 $result = '';
23 $result .= sprintf('%06d', $i).": $time $micro < $last_t $last_m\n";
30 echo $result;
/PHP-5.4/ext/gd/libgd/
H A Dgd_io.h37 int gdGetByte(int *result, gdIOCtx *ctx);
38 int gdGetWord(int *result, gdIOCtx *ctx);
39 int gdGetInt(int *result, gdIOCtx *ctx);
/PHP-5.4/ext/hash/tests/
H A Djoaat.phpt21 $result = hash("joaat", $test[0]);
22 if ($result != $test[1]) {
23 …echo "Iteration " . $i . " failed - expected '" . $test[1] . "', got '" . $result . "' for '" . $t…
/PHP-5.4/ext/ldap/tests/
H A Dldap_next_attribute_error.phpt15 $result = ldap_search($link, "dc=my-domain,dc=com", "(objectclass=organization)");
16 $entry = ldap_first_entry($link, $result);
34 Warning: ldap_next_attribute(): supplied resource is not a valid ldap result entry resource in %s o…
36 …: called before calling ldap_first_attribute() or no attributes found in result entry in %s on lin…
H A Dldap_first_entry_basic.phpt15 $result = ldap_search($link, "dc=my-domain,dc=com", "(objectclass=person)");
17 $entry = ldap_first_entry($link, $result),
30 resource(%d) of type (ldap result entry)
/PHP-5.4/ext/standard/tests/image/
H A Dgetimagesize_246x247.phpt11 $result = array();
21 $result[$file] = getimagesize(dirname(__FILE__)."/$file");
23 var_dump($result);
H A Dgetimagesize_384x385.phpt11 $result = array();
21 $result[$file] = getimagesize(dirname(__FILE__)."/$file");
23 var_dump($result);
/PHP-5.4/ext/mbstring/libmbfl/mbfl/
H A Dmbfl_memory_device.c118 mbfl_memory_device_result(mbfl_memory_device *device, mbfl_string *result) in mbfl_memory_device_result() argument
120 if (device && result) { in mbfl_memory_device_result()
121 result->len = device->pos; in mbfl_memory_device_result()
123 result->val = device->buffer; in mbfl_memory_device_result()
127 if (result->val == NULL) { in mbfl_memory_device_result()
128 result->len = 0; in mbfl_memory_device_result()
129 result = NULL; in mbfl_memory_device_result()
132 result = NULL; in mbfl_memory_device_result()
135 return result; in mbfl_memory_device_result()
/PHP-5.4/tests/lang/
H A Dbug19566.phpt6 $result = get_declared_classes();
7 var_dump(array_search('foo', $result));
/PHP-5.4/ext/oci8/tests/
H A Dlob_018.phpt48 $result = $row['LOB_1']->load();
49 var_dump($result);
59 $result = $row['LOB_1']->load();
60 var_dump($result);
79 $result = $row['LOB_1']->load();
80 var_dump($result);
/PHP-5.4/ext/standard/tests/strings/
H A Dlevenshtein.phpt9 $result=levenshtein($text1,$text2);
12 $result=levenshtein($text1,$text2,$cost1);
15 $result=levenshtein($text1,$text2,$cost1,$cost2,$cost3);
17 if($result==$expect) return 0;
19 echo "$title: result is $result instead of $expect ";
/PHP-5.4/ext/pdo_sqlite/tests/
H A Dbug_42589.phpt14 $result = $db->query('SELECT * FROM test t1 LEFT JOIN test t2 ON t1.field1 = t2.field1');
15 $meta1 = $result->getColumnMeta(0);
16 $meta2 = $result->getColumnMeta(1);
/PHP-5.4/Zend/tests/
H A Dbug64417.phpt21 $result = null;
23 $result = &$this->container[$offset];
25 return $result;

Completed in 105 milliseconds

12345678910>>...32