Home
last modified time | relevance | path

Searched refs:var (Results 301 – 325 of 894) sorted by relevance

1...<<11121314151617181920>>...36

/PHP-7.0/ext/standard/tests/serialize/
H A Dserialization_objects_007.phpt7 * Source code: ext/standard/var.c
12 * Source code: ext/standard/var.c
/PHP-7.0/Zend/tests/traits/
H A Dbug55214.phpt8 public $var = __CLASS__;
23 return $this->var;
/PHP-7.0/ext/standard/tests/class_object/
H A Dget_class_vars_variation1.phpt79 'undefined var' => @$undefined_var,
82 'unset var' => @$unset_var,
176 --undefined var--
179 --unset var--
H A Dinterface_exists_variation1.phpt82 'undefined var' => @$undefined_var,
85 'unset var' => @$unset_var,
179 --undefined var--
182 --unset var--
/PHP-7.0/ext/standard/tests/file/
H A Dbasename_variation3.phpt88 'undefined var' => @$undefined_var,
91 'unset var' => @$unset_var,
180 --undefined var--
183 --unset var--
H A Ddirname_variation1.phpt92 'undefined var' => @$undefined_var,
95 'unset var' => @$unset_var,
184 --undefined var--
187 --unset var--
H A Dfwrite_variation5.phpt96 'undefined var' => @$undefined_var,
99 'unset var' => @$unset_var,
169 --undefined var--
171 --unset var--
H A Dpathinfo_variation1.phpt93 'undefined var' => @$undefined_var,
96 'unset var' => @$unset_var,
185 --undefined var--
188 --unset var--
/PHP-7.0/ext/standard/tests/array/
H A Dcount_basic.phpt5 /* Prototype : int count(mixed $var [, int $mode])
11 * Test basic functionality of count() using an array as $var argument
H A Darray_intersect_key_variation3.phpt85 'undefined var' => @$undefined_var,
88 'unset var' => @$unset_var,
91 'resource var' => $fp,
221 --undefined var--
226 --unset var--
231 --resource var--
/PHP-7.0/ext/zlib/tests/
H A Dgzfile_variation7.phpt26 foreach ( $variation_array as $var ) {
27 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation7.phpt26 foreach ( $variation_array as $var ) {
27 var_dump(readgzfile( $var , $use_include_path ) );
H A Dgzfile_variation1.phpt25 foreach ( $variation as $var ) {
26 var_dump(gzfile( $var , $use_include_path ) );
H A Dreadgzfile_variation1.phpt25 foreach ( $variation as $var ) {
26 var_dump(readgzfile( $var , $use_include_path ) );
/PHP-7.0/ext/posix/tests/
H A Dposix_seteuid_error2.phpt46 foreach ( $variation_array as $var ) {
47 var_dump(posix_seteuid( $var ) );
H A Dposix_seteuid_variation1.phpt25 foreach ( $variation_array as $var ) {
26 var_dump(posix_seteuid( $var ) );
H A Dposix_seteuid_variation4.phpt32 foreach ( $variation_array as $var ) {
33 var_dump(posix_seteuid( $var ) );
H A Dposix_setgid_variation6.phpt46 foreach ( $variation_array as $var ) {
47 var_dump(posix_setgid( $var ) );
H A Dposix_setuid_error2.phpt46 foreach ( $variation_array as $var ) {
47 var_dump(posix_setuid( $var ) );
H A Dposix_setuid_variation1.phpt25 foreach ( $variation_array as $var ) {
26 var_dump(posix_setuid( $var ) );
H A Dposix_setuid_variation4.phpt32 foreach ( $variation_array as $var ) {
33 var_dump(posix_setuid( $var ) );
/PHP-7.0/ext/standard/tests/general_functions/
H A Dis_callable_error.phpt8 /* Prototype: bool is_callable ( mixed $var [, bool $syntax_only [, string &$callable_name]] );
10 In case of objects, $var = array($SomeObject, 'MethodName')
H A Dgettype_settype_variation7.phpt11 /* Prototype: string gettype ( mixed $var );
12 Description: Returns the type of the PHP variable var
14 Prototype: bool settype ( mixed &$var, string $type );
15 Description: Set the type of variable var to type
47 var $x;
48 var $y;
164 foreach ($var_values as $var) {
168 var_dump( gettype($var) );
171 var_dump( settype($var, $type) );
174 var_dump( $var );
[all …]
/PHP-7.0/ext/oci8/
H A Dphp_oci8_int.h390 #define PHP_OCI_FETCH_RESOURCE_EX(zval, var, type, name, resource_type) \ argument
392 var = (type) zend_fetch_resource(Z_RES_P(zval), name, resource_type); \
393 if (!var) { \
495 int php_oci_bind_by_name(php_oci_statement *statement, char *name, size_t name_len, zval *var, zend…
502 int php_oci_bind_array_by_name(php_oci_statement *statement, char *name, size_t name_len, zval *var
503 php_oci_bind *php_oci_bind_array_helper_number(zval *var, zend_long max_table_length);
504 php_oci_bind *php_oci_bind_array_helper_double(zval *var, zend_long max_table_length);
505 php_oci_bind *php_oci_bind_array_helper_string(zval *var, zend_long max_table_length, zend_long max…
506 php_oci_bind *php_oci_bind_array_helper_date(zval *var, zend_long max_table_length, php_oci_connect…
/PHP-7.0/ext/filter/
H A Dfilter.c81 static unsigned int php_sapi_filter(int arg, char *var, char **val, size_t val_len, size_t *new_val…
420 static unsigned int php_sapi_filter(int arg, char *var, char **val, size_t val_len, size_t *new_val… in php_sapi_filter() argument
456 zend_symtable_str_exists(Z_ARRVAL_P(orig_array_ptr), var, strlen(var))) { in php_sapi_filter()
463 php_register_variable_ex(var, &raw_var, array_ptr); in php_sapi_filter()
479 php_register_variable_ex(var, &new_var, orig_array_ptr); in php_sapi_filter()
572 zend_string *var; in PHP_FUNCTION() local
575 if (zend_parse_parameters(ZEND_NUM_ARGS(), "lS", &arg, &var) == FAILURE) { in PHP_FUNCTION()
581 if (array_ptr && HASH_OF(array_ptr) && zend_hash_exists(HASH_OF(array_ptr), var)) { in PHP_FUNCTION()
725 zend_string *var; in PHP_FUNCTION() local
727 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "lS|lz", &fetch_from, &var, &filter, &filter_args) == F… in PHP_FUNCTION()
[all …]

Completed in 50 milliseconds

1...<<11121314151617181920>>...36