Home
last modified time | relevance | path

Searched refs:value (Results 1 – 25 of 2418) sorted by path

12345678910>>...97

/php-src/
H A D.gdbinit67 if $ex->This->value.obj
106 printf "%ld", $zvalue->value.lval
109 printf "%f", $zvalue->value.dval
112 ____print_str (char*)$zvalue->value.str->val $zvalue->value.str->len
183 printf "long: %ld", $zvalue->value.lval
186 printf "double: %f", $zvalue->value.dval
195 ____print_ht $zvalue->value.arr 1
208 set $handle = $zvalue->value.obj.handle
210 set $zobj = $zvalue->value.obj
257 ____printzv $zvalue->value.zv $arg1
[all …]
H A DCODING_STANDARDS.md83 return value for functions that perform some operation that may
H A DCONTRIBUTING.md98value representation](https://www.npopov.com/2015/05/05/Internal-value-representation-in-PHP-7-par…
H A DNEWS31 . Added feature_list key to the curl_version() return value (Ayesh)
116 . Increased the maximum value of opcache.interned_strings_buffer to 32767 on
217 . Updated the socket_create_listen backlog argument default value to SOMAXCONN.
H A DUPGRADING69 . odbc_fetch_row() returns false when a value less than or equal to 0 is
72 object rather than a resource. Return value checks using is_resource()
75 an Odbc\Result object rather than a resource. Return value checks using
86 JIT, set the opcache.jit config value accordingly.
99 have been changed to set value as a bool.
117 - A TypeError if a value of the $signals array is not an integer
120 In some case previously it could return the value -1.
186 . curl_version() returns an additional feature_list value, which is an
388 odbc_fetch_into() now has a default value of null, consistent with
397 . getAttribute, enabled to get the value of ATTR_STRINGIFY_FETCHES.
[all …]
H A DUPGRADING.INTERNALS157 value instead.
175 single php_random_algo_with_state struct by value, making it easier to
222 - Added the php_base64_encode_ex() API with flag parameters, value can be
/php-src/.github/ISSUE_TEMPLATE/
H A Dbug_report.yml9 value: |
/php-src/Zend/Optimizer/
H A Dblock_pass.c41 ZVAL_COPY_VALUE(result, &c->value); in zend_optimizer_get_persistent_constant()
54 ZVAL_COPY_VALUE(result, &c->value); in zend_optimizer_get_persistent_constant()
H A Dpass1.c164 const zval *c = &cc->value; in zend_optimizer_pass1()
H A Dsccp.c391 zval *value; in ct_eval_fetch_dim() local
392 if (fetch_array_elem(&value, op1, op2) == SUCCESS && value && !IS_BOT(value)) { in ct_eval_fetch_dim()
428 zval *value; in ct_eval_isset_dim() local
432 if (IS_PARTIAL_ARRAY(op1) && (!value || IS_BOT(value))) { in ct_eval_isset_dim()
530 zval *value; in ct_eval_add_array_unpack() local
538 value = zend_hash_update(Z_ARR_P(result), key, value); in ct_eval_add_array_unpack()
601 zval *value; in ct_eval_fetch_obj() local
602 if (fetch_obj_prop(&value, op1, op2) == SUCCESS && value && !IS_BOT(value)) { in ct_eval_fetch_obj()
612 zval *value; in ct_eval_isset_obj() local
616 if (!value || IS_BOT(value)) { in ct_eval_isset_obj()
[all …]
H A Dzend_inference.c4310 zval *value, zend_bitset visited) { in can_convert_to_double() argument
4341 if (Z_ISUNDEF_P(value)) { in can_convert_to_double()
4359 ZVAL_COPY_VALUE(&orig_op1, value); in can_convert_to_double()
4360 ZVAL_DOUBLE(&dval_op1, (double) Z_LVAL_P(value)); in can_convert_to_double()
4372 ZVAL_COPY_VALUE(&orig_op2, value); in can_convert_to_double()
4373 ZVAL_DOUBLE(&dval_op2, (double) Z_LVAL_P(value)); in can_convert_to_double()
4432 if (!can_convert_to_double(op_array, ssa, phi->ssa_var, value, visited)) { in can_convert_to_double()
4463 zval *value = CRT_CONSTANT(opline->op2); in zend_type_narrowing() local
4466 if (can_convert_to_double(op_array, ssa, v, value, visited)) { in zend_type_narrowing()
H A Dzend_optimizer.c45 void zend_optimizer_collect_constant(zend_optimizer_ctx *ctx, zval *name, zval* value) in zend_optimizer_collect_constant() argument
52 if (zend_hash_add(ctx->constants, Z_STR_P(name), value)) { in zend_optimizer_collect_constant()
53 Z_TRY_ADDREF_P(value); in zend_optimizer_collect_constant()
194 } else if (ini_entry->value) { in zend_optimizer_eval_special_func_call()
195 ZVAL_STR_COPY(result, ini_entry->value); in zend_optimizer_eval_special_func_call()
204 bool zend_optimizer_get_collected_constant(HashTable *constants, zval *name, zval* value) in zend_optimizer_get_collected_constant() argument
209 ZVAL_COPY(value, val); in zend_optimizer_get_collected_constant()
H A Dzend_optimizer_internal.h84 void zend_optimizer_collect_constant(zend_optimizer_ctx *ctx, zval *name, zval* value);
85 bool zend_optimizer_get_collected_constant(HashTable *constants, zval *name, zval* value);
/php-src/Zend/asm/
H A Dmake_i386_ms_pe_masm.asm26 _exit PROTO, value:SDWORD
/php-src/Zend/
H A Dbench.php204 foreach($hash1 as $key => $value) $hash2[$key] += $value;
/php-src/Zend/tests/
H A D019.phpt290 // assign a value to static var
313 // set the value ot a new one
314 $ref_val = "new value by ref";
317 $value = "value";
318 var_dump($value);
319 test_unset2($value);
320 var_dump($value);
1286 value of static_var after unset:
1295 value of static_var after unset:
1310 string(5) "value"
[all …]
H A D026.phpt2 Trying assign value to property when an object is not returned in a function
H A D031.phpt2 Testing array with '[]' passed as argument by value
H A DArrayAccess_indirect_append.phpt15 public function offsetSet($name, $value): void {
16 $this->data[$name] = $value;
H A DErrorException_construct.phpt2 Test default value handling of ErrorException::__construct()
H A Daccess_modifiers_011.phpt7 private $var1 = 'var1 value';
8 protected $var2 = 'var2 value';
36 var1 value
37 var2 value
H A Dadd_002.phpt9 $o->prop = "value";
H A Dadd_003.phpt9 $o->prop = "value";
H A Dadd_006.phpt50 Warning: A non-numeric value encountered in %s on line %d
56 Warning: A non-numeric value encountered in %s on line %d
/php-src/Zend/tests/arg_unpack/
H A Dtraversable_with_by_ref_parameters.phpt27 Warning: Cannot pass by-reference argument 4 of test() by unpacking a Traversable, passing by-value
29 Warning: Cannot pass by-reference argument 4 of test() by unpacking a Traversable, passing by-value
31 Warning: Cannot pass by-reference argument 4 of test() by unpacking a Traversable, passing by-value

Completed in 82 milliseconds

12345678910>>...97