Home
last modified time | relevance | path

Searched refs:value (Results 401 – 425 of 2100) sorted by relevance

1...<<11121314151617181920>>...84

/PHP-5.5/ext/standard/tests/array/
H A Darray_walk_recursive_variation9.phpt21 function callback_two_parameter($value, $key)
26 var_dump($value); // value
32 function callback_one_parameter($value)
36 var_dump($value); // value
H A Darray_column_object_cast.phpt20 $value = new ValueClass();
26 'id' => $value,
40 var_dump($value);
H A Darray_filter_variation3.phpt35 array(1 => 'one', 'zero' => 0, -2 => "value"), //associative array
37 array(1 => 'one', 2, "key" => 'value') // combinition of associative and non-associative array
162 string(5) "value"
170 string(5) "value"
204 string(5) "value"
212 string(5) "value"
H A Duasort_object2.phpt24 * Return value : 0 - if both values are same
47 public function __construct($value) {
48 $this->int_value = $value;
62 public function __construct($value) {
63 StaticClass::$static_value = $value;
81 public function __construct($value) {
82 $this->child_value = $value;
/PHP-5.5/Zend/
H A Dzend_vm_execute.h4159 generator->value = value; in ZEND_YIELD_SPEC_CONST_CONST_HANDLER()
4852 generator->value = value; in ZEND_YIELD_SPEC_CONST_TMP_HANDLER()
5872 generator->value = value; in ZEND_YIELD_SPEC_CONST_VAR_HANDLER()
6604 generator->value = value; in ZEND_YIELD_SPEC_CONST_UNUSED_HANDLER()
7356 generator->value = value; in ZEND_YIELD_SPEC_CONST_CV_HANDLER()
9387 generator->value = value; in ZEND_YIELD_SPEC_TMP_CONST_HANDLER()
10082 generator->value = value; in ZEND_YIELD_SPEC_TMP_TMP_HANDLER()
11104 generator->value = value; in ZEND_YIELD_SPEC_TMP_VAR_HANDLER()
11689 generator->value = value; in ZEND_YIELD_SPEC_TMP_UNUSED_HANDLER()
12381 generator->value = value; in ZEND_YIELD_SPEC_TMP_CV_HANDLER()
[all …]
H A Dzend_execute.c708 ALLOC_ZVAL(value); in zend_assign_to_object()
715 ALLOC_ZVAL(value); in zend_assign_to_object()
723 Z_ADDREF_P(value); in zend_assign_to_object()
732 FREE_ZVAL(value); in zend_assign_to_object()
749 *retval = value; in zend_assign_to_object()
750 PZVAL_LOCK(value); in zend_assign_to_object()
899 Z_ADDREF_P(value); in zend_assign_to_variable()
905 return value; in zend_assign_to_variable()
912 if (PZVAL_IS_REF(value) && Z_REFCOUNT_P(value) > 0) { in zend_assign_to_variable()
920 Z_ADDREF_P(value); in zend_assign_to_variable()
[all …]
/PHP-5.5/ext/dom/tests/
H A Ddomdocumentload_utilities.php10 foreach($libxml_constants as $value) {
11 $sum = $sum|$value;
H A Ddomattributes.phpt19 echo "Language: ".$lang->value."\n";
21 $lang->value = 'en-US';
22 echo "Language: ".$lang->value."\n";
/PHP-5.5/tests/lang/
H A DforeachLoop.001.phpt2 Foreach loop tests - basic loop with just value and key => value.
14 //check key and value after the loop.
25 //check key and value after the loop.
/PHP-5.5/main/
H A Drfc1867.c229 char *value; member
375 if (h->value) { in php_free_hdr_entry()
376 efree(h->value); in php_free_hdr_entry()
427 if (value) { in multipart_buffer_headers()
438 *value = '\0'; in multipart_buffer_headers()
439 do { value++; } while(isspace(*value)); in multipart_buffer_headers()
853 if (!value) {
862 efree(value);
875 event_formdata.value = &value;
896 event_formdata.value = &value;
[all …]
/PHP-5.5/ext/standard/tests/general_functions/
H A Dvar_dump.phpt578 ["value"]=>
602 ["value"]=>
619 ["value"]=>
636 ["value"]=>
653 ["value"]=>
680 ["value"]=>
697 ["value"]=>
754 ["value"]=>
771 ["value"]=>
791 ["value"]=>
[all …]
H A Dvar_dump_64bit.phpt578 ["value"]=>
602 ["value"]=>
619 ["value"]=>
636 ["value"]=>
653 ["value"]=>
680 ["value"]=>
697 ["value"]=>
754 ["value"]=>
771 ["value"]=>
791 ["value"]=>
[all …]
/PHP-5.5/ext/tidy/examples/
H A Ddumpit5.php69 do_leaf(" +---- Value: '{$node->value}'\n", $indent);
76 foreach($node->attribute as $name=>$value) {
78 do_leaf(" | +-- Value: $value\n", $indent);
/PHP-5.5/Zend/tests/
H A Dbug64417.phpt7 public function offsetSet($offset, $value) {
9 $this->container[] = $value;
11 $this->container[$offset] = $value;
H A Dbug39297.phpt19 public function offsetSet($offset, $value) {
22 $this->children[$cannonicalName] = $value;
23 $value->parent = $this;
/PHP-5.5/Zend/tests/generators/
H A Dgenerator_closure.phpt12 foreach ($genFactory() as $value) {
13 var_dump($value);
/PHP-5.5/ext/standard/tests/strings/
H A Dbug65230.phpt14 function test($locale, $value)
22 printf(" %%f: %f\n", $value);
23 printf(" %%F: %F\n", $value);
/PHP-5.5/ext/standard/tests/file/
H A Dfstat_variation8.phpt13 foreach($stat_result as $key =>$value) {
18 if ($fstat_result[$key] != $value) {
19 echo "FAIL: stat differs at '$key'. $fstat_result[$key] -- $value\n";
/PHP-5.5/ext/date/tests/
H A Dgetdate_variation7.phpt14 echo "\n-- Testing getdate() function by passing float 12.3456789000e10 value to timestamp --\n";
18 echo "\n-- Testing getdate() function by passing float -12.3456789000e10 value to timestamp --\n";
27 -- Testing getdate\(\) function by passing float 12.3456789000e10 value to timestamp --
53 -- Testing getdate\(\) function by passing float -12.3456789000e10 value to timestamp --
/PHP-5.5/ext/soap/tests/schema/
H A Dschema054.phpt16 …tring">a</key><value xsi:type="xsd:int">123</value></item><item><key xsi:type="xsd:string">b</key>…
/PHP-5.5/ext/oci8/tests/
H A Dfetch_all.phpt14 "create table fetch_all_tab (id number, value number)",
15 "insert into fetch_all_tab (id, value) values (1,1)",
16 "insert into fetch_all_tab (id, value) values (1,1)",
17 "insert into fetch_all_tab (id, value) values (1,1)"
H A Dfetch_all1.phpt14 "create table fetch_all_tab (id number, value number)",
15 "insert into fetch_all_tab (id, value) values (1,1)",
16 "insert into fetch_all_tab (id, value) values (1,1)",
17 "insert into fetch_all_tab (id, value) values (1,1)"
H A Dcursors_old.phpt17 "create table cursors_old_tab (id number, value number)",
18 "insert into cursors_old_tab (id, value) values (1,1)",
19 "insert into cursors_old_tab (id, value) values (1,1)",
20 "insert into cursors_old_tab (id, value) values (1,1)",
/PHP-5.5/ext/json/tests/
H A Dfail001.phpt15 '[ , "<-- missing value"]',
19 '{"Extra value after close": true} "misplaced quoted value"',
32 '["Bad value", truth]',
71 Testing: [ , "<-- missing value"]
91 Testing: {"Extra value after close": true} "misplaced quoted value"
156 Testing: ["Bad value", truth]
/PHP-5.5/ext/soap/
H A Dphp_xml.c76 static void soap_Comment(void *ctx, const xmlChar *value) in soap_Comment() argument
277 …tribute_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) in get_node_with_attribute_ex() argument
290 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex()
298 …cursive_ex(xmlNodePtr node, char *name, char *name_ns, char *attribute, char *value, char *attr_ns) in get_node_with_attribute_recursive_ex() argument
303 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex()
308 …p = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, value, attr_ns); in get_node_with_attribute_recursive_ex()
318 int parse_namespace(const xmlChar *inval, char **value, char **namespace) in parse_namespace() argument
324 (*value) = estrdup(++found); in parse_namespace()
326 (*value) = estrdup((char*)inval); in parse_namespace()

Completed in 351 milliseconds

1...<<11121314151617181920>>...84