Home
last modified time | relevance | path

Searched refs:val (Results 101 – 125 of 481) sorted by relevance

12345678910>>...20

/PHP-7.2/ext/intl/tests/
H A Dcollator_get_set_strength.phpt16 function check_set_strength( $coll, $val )
18 ut_coll_set_strength( $coll, $val );
20 return ( $new_val == $val ? "ok" : "failed" ) . "\n";
/PHP-7.2/ext/standard/tests/array/
H A Darray_fill_error.phpt5 /* Prototype : proto array array_fill(int start_key, int num, mixed val)
6 …tion: Create an array containing num elements starting with index start_key each initialized to val
21 $val = 1;
23 var_dump( array_fill($start_key,$num,$val, $extra_arg) );
33 var_dump( array_fill($start_key,$num,$val) );
H A Darray_fill_keys_error.phpt5 /* Prototype : proto array array_fill_keys(array keys, mixed val)
6 …cription: Create an array using the elements of the first parameter as keys each initialized to val
14 $val = 1;
18 var_dump( array_fill_keys($keys, $val, $extra_arg) );
/PHP-7.2/ext/openssl/
H A Dxp_ssl.c275 zval *val; in verify_callback() local
592 memcpy(buf, Z_STRVAL_P(val), Z_STRLEN_P(val)+1); in php_openssl_passwd_callback()
614 zval *val; in php_openssl_win_cert_verify_callback() local
1071 zval *val; in php_openssl_limit_handshake_reneg() local
1115 zval *val; in php_openssl_init_server_reneg_limit() local
1357 zval *val; in php_openssl_enable_server_sni() local
1470 zval *val; in php_openssl_enable_client_sni() local
1555 zval *val; in php_openssl_setup_crypto() local
1632 if (Z_LVAL_P(val) < 0 || Z_LVAL_P(val) > 5) { in php_openssl_setup_crypto()
1939 if (val && zend_is_true(val)) { in php_openssl_enable_crypto()
[all …]
/PHP-7.2/sapi/apache2handler/
H A Dsapi_apache2.c88 char *val, *ptr; in php_apache_sapi_header_handler() local
105 if (!val) { in php_apache_sapi_header_handler()
108 ptr = val; in php_apache_sapi_header_handler()
110 *val = '\0'; in php_apache_sapi_header_handler()
113 val++; in php_apache_sapi_header_handler()
114 } while (*val == ' '); in php_apache_sapi_header_handler()
120 ctx->content_type = estrdup(val); in php_apache_sapi_header_handler()
263 char *key, *val; in php_apache_sapi_register_variables() local
267 if (!val) { in php_apache_sapi_register_variables()
268 val = ""; in php_apache_sapi_register_variables()
[all …]
H A Dphp_apache.h63 #define APR_ARRAY_FOREACH_OPEN(arr, key, val) \ argument
70 val = elts[i].val;
/PHP-7.2/ext/intl/doc/
H A Dcollator_api.php200 * @param int $val Attribute value.
204 public function setAttribute( $attr, $val ) {} argument
373 * @param int $val Attribute value.
377 function collator_set_attribute( $coll, $attr, $val ) {} argument
/PHP-7.2/ext/simplexml/tests/
H A D009.phpt31 foreach($sxe->children() as $name=>$val) {
33 var_dump(get_class($val));
34 var_dump(trim($val));
/PHP-7.2/ext/spl/tests/
H A Diterator_010.phpt8 foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
10 echo "$key=>$val\n";
H A Diterator_017.phpt8 foreach(new LimitIterator(new EmptyIterator(), 0, 3) as $key => $val)
10 echo "$key=>$val\n";
H A Dbug31926.phpt9 foreach($it as $key => $val) {
10 var_dump($key, $val);
/PHP-7.2/
H A D.gdbinit213 set $cname = $zobj->ce->name->val
244 ____printzv &$zvalue->value.ref->val $arg1
247 printf "const: %s", $zvalue->value.str->val
337 if $p->val.u1.v.type > 0
344 printf "%s => ", $p->key->val
349 printf "%p\n", (zval *)&$p->val
352 set $zval = (zval *)&$p->val
356 printf "%s\n", (char*)$p->val.value.ptr
418 printf "class %s", $ce->name->val
438 printf "interface %s", $ce->name->val
[all …]
/PHP-7.2/Zend/tests/generators/
H A Dyield_array_offset_by_ref.phpt12 foreach ($gen as &$val) {
13 $val *= -1;
/PHP-7.2/ext/standard/tests/strings/
H A Dbug27295.phpt8 sscanf( $string, "%s = %[^[]]", $var, $val );
9 echo "$var = $val\n";
/PHP-7.2/ext/oci8/
H A Doci8_statement.c1376 zval *val; in php_oci_bind_in_callback() local
1383 val = &phpbind->val; in php_oci_bind_in_callback()
1384 ZVAL_DEREF(val); in php_oci_bind_in_callback()
1439 zval *val; in php_oci_bind_out_callback() local
1447 val = &phpbind->val; in php_oci_bind_out_callback()
1448 ZVAL_DEREF(val); in php_oci_bind_out_callback()
1487 zval_ptr_dtor(val); in php_oci_bind_out_callback()
1496 Z_STRVAL_P(val) = ecalloc(1, Z_STRLEN_P(val) + 1); in php_oci_bind_out_callback()
1498 ZVAL_STRINGL(val, NULL, Z_STRLEN(val) + 1); in php_oci_bind_out_callback()
1610 zval *val; in php_oci_bind_array_by_name() local
[all …]
/PHP-7.2/ext/pdo/tests/
H A Dpdo_032.phpt17 $db->exec('CREATE TABLE test(id int NOT NULL PRIMARY KEY, val VARCHAR(10))');
43 ["val"]=>
50 ["val"]=>
57 ["val"]=>
H A Dpdo_031.phpt28 $db->exec('CREATE TABLE test(id INT NOT NULL PRIMARY KEY, val VARCHAR(10), val2 VARCHAR(16))');
53 | |-Abc [val]
57 | |-Def [val]
61 |-Ghi [val]
/PHP-7.2/Zend/tests/
H A Dindirect_method_call_003.phpt12 public function setX($val) {
13 $this->x = $val;
H A Dclosure_005.phpt17 function getIncer($val) {
18 return function() use ($val) {
19 $this->x += $val;
H A Djump05.phpt6 foreach ($ar as $val) {
7 switch ($val) {
/PHP-7.2/ext/opcache/
H A Dzend_accelerator_util_funcs.c126 zend_function *function = Z_PTR(p->val); in zend_accel_move_user_functions()
164 ZVAL_NEW_REF(src, &old->val); in zend_clone_zval()
204 Z_NEXT(q->val) = HT_HASH(ht, nIndex); in zend_hash_clone_constants()
212 c = ARENA_REALLOC(Z_PTR(p->val)); in zend_hash_clone_constants()
213 ZVAL_PTR(&q->val, c); in zend_hash_clone_constants()
256 Z_NEXT(q->val) = HT_HASH(ht, nIndex); in zend_hash_clone_methods()
265 ZVAL_PTR(&q->val, ARENA_REALLOC(Z_PTR(p->val))); in zend_hash_clone_methods()
314 Z_NEXT(q->val) = HT_HASH(ht, nIndex); in zend_hash_clone_prop_info()
324 ZVAL_PTR(&q->val, prop_info); in zend_hash_clone_prop_info()
501 function1 = Z_PTR(p->val); in zend_accel_function_hash_copy()
[all …]
/PHP-7.2/ext/soap/tests/schema/
H A Dtest_schema.inc2 $val = null;
5 global $val;
6 $val = $input;
10 global $HTTP_RAW_POST_DATA, $val;
72 var_dump($val);
/PHP-7.2/ext/mbstring/tests/
H A Dmb_check_encoding_array.phpt10 $arr = [1234, 12.34, TRUE, FALSE, NULL, $str, 'key'=>$str, $str=>'val'];
17 $arr1 = [1234, 12.34, TRUE, FALSE, NULL, 'key'=>$str, $str=>'val'];
20 $arr2 = [1234, 12.34, TRUE, FALSE, NULL, $str=>'val'];
/PHP-7.2/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp140 zval val; in BreakIterator_get_debug_info() local
154 ZVAL_FALSE(&val); in BreakIterator_get_debug_info()
155 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &val); in BreakIterator_get_debug_info()
158 ZVAL_TRUE(&val); in BreakIterator_get_debug_info()
159 zend_hash_str_update(debug_info, "valid", sizeof("valid") - 1, &val); in BreakIterator_get_debug_info()
162 ZVAL_NULL(&val); in BreakIterator_get_debug_info()
163 zend_hash_str_update(debug_info, "text", sizeof("text") - 1, &val); in BreakIterator_get_debug_info()
169 ZVAL_STRING(&val, const_cast<char*>(typeid(*biter).name())); in BreakIterator_get_debug_info()
170 zend_hash_str_update(debug_info, "type", sizeof("type") - 1, &val); in BreakIterator_get_debug_info()
/PHP-7.2/ext/filter/tests/
H A Dbug7715.phpt19 foreach ($data as $val) {
20 $res = filter_var($val, FILTER_VALIDATE_FLOAT);

Completed in 49 milliseconds

12345678910>>...20