Home
last modified time | relevance | path

Searched refs:res (Results 226 – 250 of 567) sorted by relevance

12345678910>>...23

/PHP-7.4/ext/standard/tests/file/
H A Drename_variation12.phpt56 $res = rename($dir."/".$fromFile, $dir."/".$toFile);
57 var_dump($res);
58 if ($res == true) {
59 $res = rename($dir."/".$toFile, $dir."/".$fromFile);
60 var_dump($res);
H A Drename_variation11-win32.phpt59 $res = rename($dir."\\".$fromFile, $dir."\\".$toFile);
60 var_dump($res);
61 if ($res == true) {
62 $res = rename($dir."\\".$toFile, $dir."\\".$fromFile);
63 var_dump($res);
/PHP-7.4/ext/standard/tests/strings/
H A Dcrypt_sha256.phpt50 $res = crypt($t[1], $t[0]);
51 if ($res != $t[2]) echo "Iteration $iter failed.
53 Got <$res>\n";
H A Dcrypt_sha512.phpt50 $res = crypt($t[1], $t[0]);
51 if ($res != $t[2]) echo "Iteration $iter failed.
53 Got <$res>\n";
/PHP-7.4/ext/calendar/
H A Deaster.c38 struct tm b, *res; in _cal_easter() local
40 res = php_localtime_r(&a, &b); in _cal_easter()
41 if (!res) { in _cal_easter()
/PHP-7.4/ext/pdo_pgsql/tests/
H A Dbug61267.phpt16 $res = $db->exec('SELECT * from generate_series(1, 42);');
17 var_dump($res);
/PHP-7.4/Zend/
H A Dzend_closures.h35 ZEND_API void zend_create_closure(zval *res, zend_function *op_array, zend_class_entry *scope, zend…
36 ZEND_API void zend_create_fake_closure(zval *res, zend_function *op_array, zend_class_entry *scope,…
H A Dzend_dtrace.c46 zend_op_array *res; in dtrace_compile_file() local
48 res = compile_file(file_handle, type); in dtrace_compile_file()
51 return res; in dtrace_compile_file()
/PHP-7.4/ext/openssl/tests/
H A Dbug66501.phpt20 $res = openssl_sign($data ='alpha', $sign, $key, 'SHA1');
21 var_dump($res);
/PHP-7.4/ext/intl/tests/
H A Dmsgfmt_get_set_pattern.phpt24 $res = ut_msgfmt_set_pattern( $fmt, $pattern );
25 if( $res === false )
29 $res = ut_msgfmt_get_pattern( $fmt );
30 if( $res === false )
H A Dformatter_clone.phpt18 $res = $fmt->setPattern("0.0" );
19 if( $res === false )
/PHP-7.4/ext/standard/
H A Dfile.c900 zval *res; in PHP_FUNCTION() local
971 zval *res; in PHP_FUNCTION() local
991 zval *res; in PHP_FUNCTION() local
1012 zval *res; in PHP_FUNCTION() local
1064 zval *res; in PHP_FUNCTION() local
1183 zval *res; in PHP_FUNCTION() local
1225 zval *res; in PHP_FUNCTION() local
1247 zval *res; in PHP_FUNCTION() local
1267 zval *res; in PHP_FUNCTION() local
1735 int res; in php_copy_file_ctx() local
[all …]
/PHP-7.4/ext/sodium/tests/
H A Dcrypto_secretstream.phpt17 $res = sodium_crypto_secretstream_xchacha20poly1305_init_push($key);
18 $stream = $res[0];
19 $header = $res[1];
/PHP-7.4/ext/mysqli/tests/
H A Dmysqli_next_result_error.phpt21 if ($res = $mysqli->store_result()) {
22 var_dump($res->fetch_all(MYSQLI_ASSOC));
23 $res->free();
H A Dbug73800.phpt21 $res = $link->query("SELECT RPAD('1',9000000,'1') as a,RPAD('1',9000000,'1') as b, 9223372036854775…
22 $r = $res->fetch_array();
H A Dbug74021.phpt18 $res = $link->query("SELECT RPAD('1',9000000,'1') as a,RPAD('1',9000000,'1') as b");
19 $r = $res->fetch_array();
H A Dmysqli_connect_twice.phpt29 if (!($res = mysqli_query($link, "SELECT 'ok' AS it_works")) ||
30 !($row = mysqli_fetch_assoc($res)))
34 mysqli_free_result($res);
54 if (!($res = $link->query("SELECT 'works also with oo' AS syntax")) ||
55 !($row = $res->fetch_assoc()))
59 mysqli_free_result($res);
H A Dmysqli_fetch_array.phpt27 var_dump(mysqli_fetch_array($res));
30 var_dump(mysqli_fetch_array($res, MYSQLI_NUM));
33 var_dump(mysqli_fetch_array($res, MYSQLI_BOTH));
36 var_dump(mysqli_fetch_array($res, MYSQLI_ASSOC));
39 var_dump(mysqli_fetch_array($res));
41 mysqli_free_result($res);
47 var_dump(mysqli_fetch_array($res, MYSQLI_BOTH));
49 mysqli_free_result($res);
60 $tmp = mysqli_fetch_array($res, $illegal_mode);
65 $tmp = mysqli_fetch_array($res, $illegal_mode);
[all …]
H A Dbug49027.phpt39 if (!$res = mysqli_query($link, "SELECT id FROM test"))
42 var_dump(mysqli_fetch_assoc($res));
44 mysqli_free_result($res);
/PHP-7.4/ext/pgsql/tests/
H A D13pg_select.phpt18 $res = pg_select($db, $table_name, $ids) or print "Error\n";
19 var_dump($res);
/PHP-7.4/ext/sqlite3/tests/
H A Dbug73333.phpt17 $res = $db->query('SELECT bar FROM foo');
18 while (($row = $res->fetchArray(SQLITE3_NUM)) !== false) {
/PHP-7.4/ext/com_dotnet/
H A Dcom_variant.c433 HRESULT res; in PHP_FUNCTION() local
477 if (FAILED(res)) { in PHP_FUNCTION()
985 VARIANT res; in PHP_FUNCTION() local
997 VariantInit(&res); in PHP_FUNCTION()
1017 V_VT(&res) = VT_DATE; in PHP_FUNCTION()
1022 VariantClear(&res); in PHP_FUNCTION()
1050 HRESULT res; in PHP_FUNCTION() local
1060 if (SUCCEEDED(res)) { in PHP_FUNCTION()
1072 php_com_throw_exception(res, msg); in PHP_FUNCTION()
1086 HRESULT res; in PHP_FUNCTION() local
[all …]
H A Dcom_saproxy.c93 HRESULT res; in saproxy_read_dimension() local
117 res = php_com_do_invoke(proxy->obj, Z_STRVAL(proxy->indices[0]), in saproxy_read_dimension()
123 if (res == SUCCESS) { in saproxy_read_dimension()
126 } else if (res == DISP_E_BADPARAMCOUNT) { in saproxy_read_dimension()
186 res = SafeArrayGetElement(sa, indices, &v); in saproxy_read_dimension()
189 res = SafeArrayGetElement(sa, indices, &v.lVal); in saproxy_read_dimension()
194 if (SUCCEEDED(res)) { in saproxy_read_dimension()
197 php_com_throw_exception(res, NULL); in saproxy_read_dimension()
214 HRESULT res; in saproxy_write_dimension() local
278 if (FAILED(res)) { in saproxy_write_dimension()
[all …]
/PHP-7.4/ext/filter/tests/
H A D037.phpt21 $res = filter_input_array(INPUT_GET, array(
30 var_dump($res);
/PHP-7.4/ext/standard/tests/math/
H A Dabs_basic.phpt30 $res = abs($values[$i]);
31 var_dump($res);

Completed in 34 milliseconds

12345678910>>...23