Home
last modified time | relevance | path

Searched refs:v (Results 126 – 150 of 719) sorted by relevance

12345678910>>...29

/PHP-8.2/Zend/tests/
H A Dclosure_038.phpt9 public function __construct($v) {
10 $this->x = $v;
19 public function __construct($v) {
20 parent::__construct($v);
21 $this->x = $v*2;
H A Dclosure_039.phpt9 public function __construct($v) {
10 $this->x = $v;
19 public function __construct($v) {
20 parent::__construct($v);
21 $this->x = $v*2;
H A Dbug31341.phpt16 foreach ($a as $v) {
17 echo("'$v'\n");
/PHP-8.2/tests/lang/
H A DforeachLoopObjects.003.phpt17 foreach ($obj as $k=>$v) {
19 var_dump($v);
26 $v="changed.$k";
34 $v="changed.$k";
41 foreach ($obj as $v) {
48 var_dump($v);
55 foreach ($obj as &$v) {
62 var_dump($v);
68 foreach ($obj as $v) {
72 var_dump($v);
[all …]
H A DforeachLoopObjects.002.phpt16 var_dump($v);
17 $v="changed.$k";
24 var_dump($v);
32 var_dump($v);
47 var_dump($v);
150 var_dump($v);
151 $v="changed.$k";
157 var_dump($v);
158 $v="changed.$k";
164 var_dump($v);
[all …]
H A Dbug24640.phpt8 function test($v)
10 echo var_export($v, true) . "\n";
11 var_dump($v);
12 echo "$v\n";
13 print_r($v);
/PHP-8.2/ext/spl/tests/
H A Darray_015.phpt24 foreach($it as $k => $v)
27 echo "$k=>$v\n";
32 foreach($it as $k => $v)
35 echo "$k=>$v\n";
H A DSplFixedArray_override_getIterator.phpt23 foreach ($a as $k => $v) {
24 echo "$k => $v\n";
32 foreach ($a as $k => $v) {
33 echo "$k => $v\n";
/PHP-8.2/Zend/tests/generators/
H A Dgc_running_generator.phpt8 // Trigger GC while $v is being reassigned.
11 foreach ($ary as &$v) { }
19 foreach ($gen2 as $v) {}
/PHP-8.2/ext/intl/dateformat/
H A Ddateformat_helpers.cpp46 zend_long v = calendar_long; in datefmt_process_calendar_arg() local
47 if (v != (zend_long)UCAL_TRADITIONAL && v != (zend_long)UCAL_GREGORIAN) { in datefmt_process_calendar_arg()
56 } else if (v == (zend_long)UCAL_TRADITIONAL) { in datefmt_process_calendar_arg()
/PHP-8.2/ext/snmp/
H A Dphp_snmp.h90 #define SNMP_G(v) TSRMG(snmp_globals_id, zend_snmp_globals *, v) argument
92 #define SNMP_G(v) (snmp_globals.v)
/PHP-8.2/Zend/tests/type_declarations/union_types/
H A Dprop_ref_assign.phpt16 $v = 42;
18 $r = $v;
22 var_dump($r, $v);
24 $v = 42.0;
26 $r = $v;
30 var_dump($r, $v);
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_get_connection_stats.phpt25 foreach ($info as $k => &$v) {
27 $v = 0;
30 foreach ($info2 as $k => &$v) {
32 $v = 0;
45 foreach ($info as $k => &$v) {
47 $v = 0;
H A Dbug42378.phpt131 foreach ($expected as $k => $v) {
135 if ($result !== $v) {
139 gettype($v), $v,
161 foreach ($expected as $k => $v)
162 $expected[$k] = number_format(round($v), 0, '.', ',');
166 foreach ($expected as $k => $v)
167 $expected[$k] = number_format(round($v), 0, '.', ',');
171 foreach ($expected as $k => $v)
172 $expected[$k] = number_format(round($v), 0, '.', ',');
176 foreach ($expected as $k => $v)
[all …]
H A Dmysqli_stmt_bind_result_format.phpt120 foreach ($expected as $k => $v) {
124 if ($result !== $v) {
128 gettype($v), $v,
166 foreach ($expected as $k => $v)
171 foreach ($expected as $k => $v)
176 foreach ($expected as $k => $v)
181 foreach ($expected as $k => $v)
186 foreach ($expected as $k => $v)
191 foreach ($expected as $k => $v)
196 foreach ($expected as $k => $v)
[all …]
/PHP-8.2/tests/basic/
H A D023.phpt7 c o o k i e=value; c o o k i e= v a l u e ;;c%20o+o k+i%20e=v;name="value","value",UEhQIQ==;UEhQIQ=…
17 string(1) "v"
/PHP-8.2/Zend/
H A Dzend_signal.h66 # define SIGG(v) ZEND_TSRMG_FAST(zend_signal_globals_offset, zend_signal_globals_t *, v) argument
72 # define SIGG(v) (zend_signal_globals.v)
/PHP-8.2/TSRM/
H A Dtsrm_win32.h68 # define TWG(v) TSRMG_STATIC(win32_globals_id, tsrm_win32_globals *, v) argument
71 # define TWG(v) (win32_globals.v)
/PHP-8.2/ext/opcache/tests/opt/
H A Dsccp_022.phpt22 foreach ($a as $v) {
23 foreach ($v as $v2) {}
55 0001 FE_FETCH_R V3 CV1($v) 0007
56 0002 V4 = FE_RESET_R CV1($v) 0005
/PHP-8.2/ext/hash/
H A Dhash_sha3.c34 static inline uint64_t rol64(uint64_t v, unsigned char b) { in rol64() argument
35 return (v << b) | (v >> (64 - b)); in rol64()
66 # define writeLane(x, y, v) store64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
67 # define XORLane(x, y, v) xor64(ctx->state+sizeof(uint64_t)*idx(x, y), v) argument
70 # define writeLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] = v) argument
71 # define XORLane(x, y, v) (((uint64_t*)ctx->state)[idx(x,y)] ^= v) argument
/PHP-8.2/main/
H A Dphp_globals.h25 # define PG(v) ZEND_TSRMG_FAST(core_globals_offset, php_core_globals *, v) argument
29 # define PG(v) (core_globals.v) argument
/PHP-8.2/ext/tidy/
H A Dphp_tidy.h31 #define TG(v) ZEND_MODULE_GLOBALS_ACCESSOR(tidy, v) argument
/PHP-8.2/Zend/tests/nullable_types/
H A Darray.phpt6 function _array_(?array $v): ?array {
7 return $v;
H A Dfloat.phpt6 function _float_(?float $v): ?float {
7 return $v;
H A Dint.phpt6 function _int_(?int $v): ?int {
7 return $v;

Completed in 40 milliseconds

12345678910>>...29