Home
last modified time | relevance | path

Searched refs:value (Results 1751 – 1775 of 2314) sorted by relevance

1...<<71727374757677787980>>...93

/PHP-7.2/ext/standard/tests/array/
H A Darray_chunk_variation1.phpt71 foreach($values as $value){
73 var_dump( array_chunk($value, $size) );
74 var_dump( array_chunk($value, $size, true) );
75 var_dump( array_chunk($value, $size, false) );
H A Darray_chunk_variation2.phpt74 foreach($values as $value){
76 var_dump( array_chunk($input, $value) );
77 var_dump( array_chunk($input, $value, true) );
78 var_dump( array_chunk($input, $value, false) );
H A Dasort_variation1.phpt13 * 1. flag value as defualt
84 $value = $unexpected_values [$index];
85 var_dump( asort($value) ); // expecting : bool(false)
86 var_dump( asort($value, SORT_REGULAR) ); // expecting : bool(false)
87 var_dump( asort($value, SORT_NUMERIC) ); // expecting : bool(false)
88 var_dump( asort($value, SORT_STRING) ); // expecting : bool(false)
H A Dkrsort_variation1.phpt13 * 1.flag value as defualt
82 $value = $unexpected_values [$index];
83 var_dump( krsort($value) ); // expecting : bool(false)
84 var_dump( krsort($value, SORT_REGULAR) ); // expecting : bool(false)
85 var_dump( krsort($value, SORT_NUMERIC) ); // expecting : bool(false)
86 var_dump( krsort($value, SORT_STRING) ); // expecting : bool(false)
H A Dksort_variation1.phpt12 * 1. flag value as defualt
82 $value = $unexpected_values [$index];
83 var_dump( ksort($value) ); // expecting : bool(false)
84 var_dump( ksort($value, SORT_REGULAR) ); // expecting : bool(false)
85 var_dump( ksort($value, SORT_NUMERIC) ); // expecting : bool(false)
86 var_dump( ksort($value, SORT_STRING) ); // expecting : bool(false)
H A Dsort_variation1.phpt13 * 1. flag value as defualt
83 $value = $unexpected_values [$index];
84 var_dump( sort($value) ); // expecting : bool(false)
85 var_dump( sort($value, SORT_REGULAR) ); // expecting : bool(false)
86 var_dump( sort($value, SORT_NUMERIC) ); // expecting : bool(false)
87 var_dump( sort($value, SORT_STRING) ); // expecting : bool(false)
H A Darray_filter_variation7.phpt11 * Passing different anonymous callback functions with passed by value and reference arguments
H A Darray_reduce.phpt8 Description: Iteratively reduce the array to a single value via the callback
H A Duasort_basic2.phpt15 * Return value : 0 - if both values are same
H A Duasort_variation11.phpt19 * Return value : 0 - if both values are same
/PHP-7.2/ext/oci8/
H A Doci8_collection.c730 int php_oci_collection_element_set(php_oci_collection *collection, zend_long index, char *value, in… in php_oci_collection_element_set() argument
738 return php_oci_collection_element_set_date(collection, index, value, value_len); in php_oci_collection_element_set()
742 return php_oci_collection_element_set_string(collection, index, value, value_len); in php_oci_collection_element_set()
756 return php_oci_collection_element_set_number(collection, index, value, value_len); in php_oci_collection_element_set()
H A Doci8_interface.c2327 char *value; in PHP_FUNCTION() local
2331 if (zend_parse_parameters(ZEND_NUM_ARGS(), "s", &value, &value_len) == FAILURE) { in PHP_FUNCTION()
2336 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "Os", &z_collection, oci_coll_class_entry_ptr, &value, … in PHP_FUNCTION()
2348 if (php_oci_collection_append(collection, value, (int) value_len)) { in PHP_FUNCTION()
2362 zval value; in PHP_FUNCTION() local
2382 if (php_oci_collection_element_get(collection, element_index, &value)) { in PHP_FUNCTION()
2386 RETURN_ZVAL(&value, 1, 1); in PHP_FUNCTION()
2436 char *value; in PHP_FUNCTION() local
2439 if (zend_parse_parameters(ZEND_NUM_ARGS(), "ls", &element_index, &value, &value_len) == FAILURE) { in PHP_FUNCTION()
2444 …_ARGS(), "Ols", &z_collection, oci_coll_class_entry_ptr, &element_index, &value, &value_len) == FA… in PHP_FUNCTION()
[all …]
/PHP-7.2/ext/mysqli/
H A Dmysqli_fe.c307 ZEND_ARG_INFO(0, value)
312 ZEND_ARG_INFO(0, value)
358 ZEND_ARG_INFO(0, value)
363 ZEND_ARG_INFO(0, value)
/PHP-7.2/Zend/
H A Dzend_execute_API.c339 zval_ptr_dtor(&c->value); in shutdown_executor()
1616 ZEND_API int zend_set_local_var(zend_string *name, zval *value, int force) /* {{{ */ in zend_set_local_var() argument
1638 ZVAL_COPY_VALUE(var, value); in zend_set_local_var()
1647 return zend_hash_update(symbol_table, name, value) ? SUCCESS : FAILURE; in zend_set_local_var()
1651 …return (zend_hash_update_ind(execute_data->symbol_table, name, value) != NULL) ? SUCCESS : FAILURE; in zend_set_local_var()
1658 ZEND_API int zend_set_local_var_str(const char *name, size_t len, zval *value, int force) /* {{{ */ in zend_set_local_var_str() argument
1680 ZVAL_COPY_VALUE(var, value); in zend_set_local_var_str()
1689 return zend_hash_str_update(symbol_table, name, len, value) ? SUCCESS : FAILURE; in zend_set_local_var_str()
1693 …return (zend_hash_str_update_ind(execute_data->symbol_table, name, len, value) != NULL) ? SUCCESS … in zend_set_local_var_str()
/PHP-7.2/ext/pdo/tests/
H A Dbug_44159.phpt37 Warning: PDO::setAttribute(): SQLSTATE[HY000]: General error: attribute value must be an integer in…
/PHP-7.2/ext/mysqli/tests/
H A D036.phpt28 see mysql bug #54. So we don't check for the value, only for type (which must
/PHP-7.2/ext/oci8/tests/
H A Darray_bind_011.phpt62 Warning: oci_bind_array_by_name(): You must provide max length value for empty arrays in %s on line…
H A Dfield_funcs.phpt14 $insert_sql = "INSERT INTO ".$schema."".$table_name." (id, value) VALUES (1,1)";
H A Dfield_funcs0.phpt14 $insert_sql = "INSERT INTO ".$schema."".$table_name." (id, value) VALUES (1,1)";
H A Dfield_funcs_old.phpt14 $insert_sql = "INSERT INTO ".$schema."".$table_name." (id, value) VALUES (1,1)";
/PHP-7.2/ext/standard/
H A Dincomplete_class.c65 static void incomplete_class_write_property(zval *object, zval *member, zval *value, void **cache_s… in incomplete_class_write_property() argument
/PHP-7.2/ext/session/tests/
H A Dsession_set_save_handler_class_012.phpt27 // This test was written for broken return value handling
/PHP-7.2/ext/standard/tests/strings/
H A Dstrval_error.phpt6 * Description: Get the string value of a variable.
/PHP-7.2/Zend/tests/
H A Doffset_string.phpt46 Notice: A non well formed numeric value encountered in %s on line %d
/PHP-7.2/ext/spl/tests/
H A Diterator_003.phpt82 // The goal is to verify we can access the cached string value even if it was

Completed in 48 milliseconds

1...<<71727374757677787980>>...93