Home
last modified time | relevance | path

Searched refs:val (Results 126 – 150 of 472) sorted by relevance

12345678910>>...19

/PHP-7.4/Zend/tests/
H A Dbug71266.phpt9 foreach ($obj as $val) {
10 var_dump($val);
H A Dclosure_005.phpt17 function getIncer($val) {
18 return function() use ($val) {
19 $this->x += $val;
H A Dbug46409.phpt6 protected $val = 'hello, world';
9 return $this->val;
H A Dclass_constants_003.phpt9 const val = 1;
17 function foo($v = test::val) {
H A Dns_039.phpt9 foreach ($a as $key => $val) {
11 echo "$val\n";
H A Dbug33171.phpt16 foreach ($this as $key => $val)
18 echo "$key => $val\n";
H A Dclass_constants_001.phpt7 const val = "string";
11 var_dump(test::val);
H A Dbug52484_2.phpt7 function __set($prop, $val) {
8 $this->$prop = $val;
/PHP-7.4/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'];
H A Dmb_ereg_search_pos.phpt15 $val=mb_ereg_search_pos("n�ti�n");
17 var_dump($val);
/PHP-7.4/ext/
H A Dext_skel.php175 $val = $argv[$i];
177 if($val[0] != '-' || $val[1] != '-')
182 switch($opt = strtolower(substr($val, 2)))
207 error('Argument "' . $val . '" expects a value, none passed');
216 error('Unsupported argument "' . $val . '" passed');
/PHP-7.4/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.4/ext/ffi/tests/
H A D026.phpt13 foreach ($a as &$val) {
14 $val->cdata += 5;
/PHP-7.4/ext/openssl/
H A Dxp_ssl.c111 if (try_convert_to_string(val)) str = Z_STRVAL_P(val); \
298 zval *val; in verify_callback() local
615 memcpy(buf, Z_STRVAL_P(val), Z_STRLEN_P(val)+1); in php_openssl_passwd_callback()
637 zval *val; in php_openssl_win_cert_verify_callback() local
1098 zval *val; in php_openssl_limit_handshake_reneg() local
1142 zval *val; in php_openssl_init_server_reneg_limit() local
1388 zval *val; in php_openssl_enable_server_sni() local
1515 zval *val; in php_openssl_enable_client_sni() local
1602 zval *val; in php_openssl_setup_crypto() local
1985 if (val && zend_is_true(val)) { in php_openssl_enable_crypto()
[all …]
/PHP-7.4/ext/oci8/
H A Doci8_statement.c1378 zval *val; in php_oci_bind_in_callback() local
1385 val = &phpbind->val; in php_oci_bind_in_callback()
1386 ZVAL_DEREF(val); in php_oci_bind_in_callback()
1443 zval *val; in php_oci_bind_out_callback() local
1451 val = &phpbind->val; in php_oci_bind_out_callback()
1452 ZVAL_DEREF(val); in php_oci_bind_out_callback()
1490 zval_ptr_dtor(val); in php_oci_bind_out_callback()
1499 Z_STRVAL_P(val) = ecalloc(1, Z_STRLEN_P(val) + 1); in php_oci_bind_out_callback()
1501 ZVAL_STRINGL(val, NULL, Z_STRLEN(val) + 1); in php_oci_bind_out_callback()
1613 zval *val; in php_oci_bind_array_by_name() local
[all …]
/PHP-7.4/ext/soap/
H A Dphp_xml.h27 …fine get_node_with_attribute(node, name, attr, val) get_node_with_attribute_ex(node, name, NULL, a… argument
28 …ith_attribute_recursive(node, name, attr, val) get_node_with_attribute_recursive_ex(node, name, NU… argument
/PHP-7.4/ext/oci8/tests/
H A Dpecl_bug8816.phpt31 foreach ($values as $val) {
33 $insert = "INSERT INTO t1 VALUES($i, ".$val.")";
38 foreach ($values as $val) {
39 $insert = "INSERT INTO t2 VALUES($i, ".$val.")";
/PHP-7.4/ext/spl/tests/
H A Diterator_012.phpt18 foreach($it as $key=>$val)
20 echo "$key=>$val\n";
H A Ddit_002.phpt33 $val = $obj->current();
34 if (is_string($val)) {
37 var_dump($val);
/PHP-7.4/ext/tidy/tests/
H A D011.phpt10 foreach($body->attribute as $key=>$val) {
11 echo "Attrib '$key': $val\n";
/PHP-7.4/ext/intl/breakiterator/
H A Dbreakiterator_class.cpp141 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.4/Zend/tests/traits/
H A Dmethods_001.phpt15 public function __set($attr, $val) {
16 var_dump($attr .'==='. $val);
H A Dlanguage006.phpt20 public function setWorld($val) {
21 $this->world = $val;
/PHP-7.4/tests/lang/
H A Deach_binary_safety.phpt7 while (list($key, $val) = each($arr)) {
9 echo urlencode($key), ' => ', urlencode($val), "\n";
/PHP-7.4/ext/opcache/
H A Dzend_accelerator_util_funcs.c100 function = Z_PTR(p->val); in zend_accel_move_user_functions()
131 ce = Z_PTR(p->val); in zend_accel_move_user_classes()
157 ZEND_ASSERT(Z_TYPE(p->val) != IS_UNDEF); in zend_hash_clone_constants()
158 c = Z_PTR(p->val); in zend_hash_clone_constants()
161 Z_PTR(p->val) = c; in zend_hash_clone_constants()
189 new_entry = Z_PTR(p->val); in zend_hash_clone_methods()
192 Z_PTR(p->val) = new_entry; in zend_hash_clone_methods()
227 prop_info = Z_PTR(p->val); in zend_hash_clone_prop_info()
230 Z_PTR(p->val) = prop_info; in zend_hash_clone_prop_info()
446 function1 = Z_PTR(p->val); in zend_accel_function_hash_copy()
[all …]

Completed in 65 milliseconds

12345678910>>...19