Home
last modified time | relevance | path

Searched refs:container (Results 1 – 25 of 27) sorted by relevance

12

/PHP-7.4/ext/spl/tests/
H A Dbug74669.phpt8 public $container;
13 $this->container = new ArrayObject();
19 $this->container->append($element);
56 $container = new Container();
57 $container->append('test1');
58 $container->append('test2');
59 $container->valid();
60 $serialized = serialize($container);
61 unset($container);
63 $container = unserialize($serialized);
[all …]
/PHP-7.4/Zend/tests/
H A Ddereference_005.phpt9 private $container = array();
11 $this->container = array(
18 $this->container[$offset] = $value;
21 return isset($this->container[$offset]);
24 unset($this->container[$offset]);
27 return isset($this->container[$offset]) ? $this->container[$offset] : null;
H A Dbug64417.phpt6 private $container = array();
9 $this->container[] = $value;
11 $this->container[$offset] = $value;
15 return isset($this->container[$offset]);
18 unset($this->container[$offset]);
22 if (isset($this->container[$offset])) {
23 $result = &$this->container[$offset];
H A Dbug34518.phpt2 Bug #34518 (Unset doesn't separate container in CV)
H A Dbug41209.phpt21 private $container = array();
/PHP-7.4/ext/sockets/
H A Dconversions.h50 void from_zval_write_in6_pktinfo(const zval *container, char *in6_pktinfo_c, ser_context *ctx);
55 void from_zval_write_ucred(const zval *container, char *ucred_c, ser_context *ctx);
65 void from_zval_write_msghdr_send(const zval *container, char *msghdr_c, ser_context *ctx);
66 void from_zval_write_msghdr_recv(const zval *container, char *msghdr_c, ser_context *ctx);
70 void *from_zval_run_conversions(const zval *container,
H A Dconversions.c246 static void from_zval_write_aggregation(const zval *container, in from_zval_write_aggregation() argument
254 if (Z_TYPE_P(container) != IS_ARRAY) { in from_zval_write_aggregation()
259 if ((elem = zend_hash_str_find(Z_ARRVAL_P(container), in from_zval_write_aggregation()
705 static void from_zval_write_sockaddr_aux(const zval *container, in from_zval_write_sockaddr_aux() argument
717 if (Z_TYPE_P(container) != IS_ARRAY) { in from_zval_write_sockaddr_aux()
745 from_zval_write_sockaddr_in(container, (char*)*sockaddr_ptr, ctx); in from_zval_write_sockaddr_aux()
776 from_zval_write_sockaddr_un(container, (char*)*sockaddr_ptr, ctx); in from_zval_write_sockaddr_aux()
1141 from_zval_write_aggregation(container, msghdr_c, descriptors, ctx); in from_zval_write_msghdr_send()
1174 from_zval_write_aggregation(container, msghdr_c, descriptors, ctx); in from_zval_write_msghdr_recv()
1445 void *from_zval_run_conversions(const zval *container, in from_zval_run_conversions() argument
[all …]
/PHP-7.4/ext/standard/tests/serialize/
H A Dserialization_objects_015.phpt21 echo "\n\n--- a refs container:\n";
29 echo "\n\n--- a eqs container:\n";
37 echo "\n\n--- a,b ref container:\n";
45 echo "\n\n--- a,b eq container:\n";
61 echo "\n\n--- a,b,c eq container:\n";
72 --- a refs container:
116 --- a eqs container:
160 --- a,b ref container:
204 --- a,b eq container:
248 --- a,b,c ref container:
[all …]
H A Dserialization_arrays_004.phpt31 echo "\n\n--- 1 refs container:\n";
38 echo "\n\n--- 1,2 ref container:\n";
45 echo "\n\n--- 1,2,3 ref container:\n";
55 --- 1 refs container:
113 --- 1,2 ref container:
185 --- 1,2,3 ref container:
H A Dserialization_objects_012.phpt63 $ucontainer->a = "container->a.changed";
81 $ucontainer->b = "container->a.changed";
197 string(20) "container->a.changed"
238 &string(20) "container->a.changed"
240 &string(20) "container->a.changed"
H A Dserialization_arrays_005.phpt73 echo "\n\n--- Nested array references container:\n";
427 --- Nested array references container:
/PHP-7.4/tests/lang/
H A DforeachLoop.010.phpt8 $container = array(&$a);
16 // of running the 'destructor' on $container.
17 $container = null;
/PHP-7.4/Zend/
H A Dzend_execute.c2280 container = Z_REFVAL_P(container); in zend_fetch_dimension_address()
2291 array_init(container); in zend_fetch_dimension_address()
2313 retval = Z_OBJ_HT_P(container)->read_dimension(container, dim, type, result); in zend_fetch_dimension_address()
2398 container = Z_REFVAL_P(container); in zend_fetch_dimension_address_read()
2468 retval = Z_OBJ_HT_P(container)->read_dimension(container, dim, type, result); in zend_fetch_dimension_address_read()
2560 return Z_OBJ_HT_P(container)->has_dimension(container, offset, 0); in zend_isset_dim_slow()
2599 return !Z_OBJ_HT_P(container)->has_dimension(container, offset, 1); in zend_isempty_dim_slow()
2830 if (Z_ISREF_P(container) && Z_TYPE_P(Z_REFVAL_P(container)) == IS_OBJECT) { in zend_fetch_property_address()
2831 container = Z_REFVAL_P(container); in zend_fetch_property_address()
2847 container = make_real_object(container, prop_ptr OPLINE_CC EXECUTE_DATA_CC); in zend_fetch_property_address()
[all …]
H A Dzend_vm_execute.h5291 container = Z_REFVAL_P(container); in ZEND_FETCH_DIM_R_SPEC_CONST_CONST_HANDLER()
6328 container = Z_REFVAL_P(container); in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_CONST_HANDLER()
6371 container = Z_REFVAL_P(container); in ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_CONST_HANDLER()
7402 container = Z_REFVAL_P(container); in ZEND_FETCH_DIM_R_INDEX_SPEC_CONST_TMPVARCV_HANDLER()
7559 container = Z_REFVAL_P(container); in ZEND_FETCH_DIM_R_SPEC_CONST_TMPVAR_HANDLER()
8529 container = Z_REFVAL_P(container); in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_TMPVAR_HANDLER()
10989 container = Z_REFVAL_P(container); in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_CV_HANDLER()
15032 container = Z_REFVAL_P(container); in ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CONST_HANDLER()
15210 container = Z_REFVAL_P(container); in ZEND_FETCH_DIM_R_INDEX_SPEC_TMPVAR_CONST_HANDLER()
15263 container = Z_REFVAL_P(container); in ZEND_FETCH_DIM_R_INDEX_SPEC_TMPVAR_TMPVARCV_HANDLER()
[all …]
H A Dzend_vm_def.h1256 container = Z_REFVAL_P(container);
1969 container = Z_REFVAL_P(container);
1994 zval *container; variable
2120 container = Z_REFVAL_P(container);
2283 container = Z_REFVAL_P(container);
6227 container = Z_REFVAL_P(container);
6242 Z_OBJ_HT_P(container)->unset_dimension(container, offset);
6270 container = Z_REFVAL_P(container);
6954 container = Z_REFVAL_P(container);
6997 container = Z_REFVAL_P(container);
[all …]
H A Dzend_execute.h316 ZEND_API void zend_fetch_dimension_const(zval *result, zval *container, zval *dim, int type);
H A Dzend_compile.c8919 zval *container, *dim; in zend_eval_const_expr() local
8941 container = zend_ast_get_zval(ast->child[0]); in zend_eval_const_expr()
8944 if (Z_TYPE_P(container) == IS_ARRAY) { in zend_eval_const_expr()
8947 el = zend_hash_index_find(Z_ARR_P(container), Z_LVAL_P(dim)); in zend_eval_const_expr()
8954 el = zend_symtable_find(Z_ARR_P(container), Z_STR_P(dim)); in zend_eval_const_expr()
8963 } else if (Z_TYPE_P(container) == IS_STRING) { in zend_eval_const_expr()
8971 if (offset < 0 || (size_t)offset >= Z_STRLEN_P(container)) { in zend_eval_const_expr()
8974 c = (zend_uchar) Z_STRVAL_P(container)[offset]; in zend_eval_const_expr()
8976 } else if (Z_TYPE_P(container) <= IS_FALSE) { in zend_eval_const_expr()
/PHP-7.4/ext/oci8/tests/
H A Dpassword_new.phpt22 // This test in Oracle 12c needs a non-CDB or the root container
27 die('skip could not identify container type');
H A Dpassword_old.phpt22 // This test in Oracle 12c needs a non-CDB or the root container
27 die('skip could not identify container type');
H A Ddrcp_cclass1.phpt14 // This test in Oracle 12c needs a non-CDB or the root container
19 die('skip could not identify container type');
H A Ddrcp_privileged.phpt21 // This test in Oracle 12c needs a non-CDB or the root container
26 die('skip could not identify container type');
/PHP-7.4/ext/sqlite3/tests/
H A Dbug66550.phpt17 // Access the sqlite3_stmt object via the php_sqlite3_stmt container
/PHP-7.4/sapi/phpdbg/
H A Dxml.md182 - listing breakpoints always in a container element "&lt;breakpoints>"
299 - Each class is enumerated with first a &lt;class>, then an optional &lt;parents> container and the…
300 - The &lt;parents> container contains the &lt;class> elements of the parent of the last &lt;class> …
320 - consists of &lt;line> elements wrapped in a &lt;list> container
321 - &lt;list file=""> is the container element with file being the filename
361 - if there is a class method, the methods are all wrapped in a &lt;printmethods> container
472 - &lt;clean> tags wrapped in a &lt;cleaninfo> container
483 - &lt;clear> tags wrapped in a &lt;clearinfo> container
506 - when using watch list, &lt;watchvariable> elements are wrapped in a &lt;watchlist> container
633 …hit variable="" />: when ever a watched variable is changed, followed by a &lt;watchdata> container
/PHP-7.4/sapi/fpm/
H A Dphp-fpm.service.in41 # made read-only to all processes of the unit. Except for container managers no services should
/PHP-7.4/
H A DUPGRADING28 RFC: https://wiki.php.net/rfc/notice-for-non-valid-array-container

Completed in 270 milliseconds

12