Home
last modified time | relevance | path

Searched refs:z (Results 26 – 50 of 398) sorted by relevance

12345678910>>...16

/PHP-7.1/Zend/tests/
H A Dbug68412.phpt13 global $z;
14 $z->bar();
17 $z = new C;
19 global $z;
20 $z->foo();
H A Dbug71841.phpt7 $z = unserialize('O:1:"A":0:{}');
8 var_dump($z->e.=0);
9 var_dump(++$z->x);
10 var_dump($z->y++);
H A Dindirect_method_call_004.phpt8 public $z;
11 $this->z = new stdclass;
14 return $this->z;
18 var_dump(clone (new bar)->z);
H A Dobject_handlers.phpt40 $z = $x->const_get;
48 $z = $x["const_dim_get"];
58 $z = $x->{1};
65 $z = $x->{$c."_get"};
71 $z = $x[$c."_dim_get"];
82 $z = $x->{$c+3};
89 $z = $x->{$c};
98 $z = $x[$c];
112 $z = $x->{$c};
119 $z = $x->{f("var_get")};
[all …]
H A Dbug71414.phpt6 public function z(): string;
10 public function z(): string {
15 public function z() {
/PHP-7.1/ext/date/lib/
H A Dunixtime2tm.c133 tm->z = 0; in timelib_unixtime2gmt()
144 int z = tm->z; in timelib_update_from_sse() local
152 timelib_unixtime2gmt(tm, tm->sse - (tm->z * 60) + (tm->dst * 3600)); in timelib_update_from_sse()
175 tm->z = z; in timelib_update_from_sse()
187 int z = tm->z; in timelib_unixtime2local() local
190 timelib_unixtime2gmt(tm, ts - (tm->z * 60) + (tm->dst * 3600)); in timelib_unixtime2local()
193 tm->z = z; in timelib_unixtime2local()
205 tm->z = gmt_offset->offset; in timelib_unixtime2local()
229 t->z = utc_offset; in timelib_set_timezone_from_offset()
243 t->z = abbr_info.utc_offset; in timelib_set_timezone_from_abbr()
[all …]
H A Dinterval.c48 && (one->z != two->z)) in timelib_diff()
50 dst_corr = two->z - one->z; in timelib_diff()
124 t->sse -= old_time->z; in timelib_add()
125 t->sse += t->z; in timelib_add()
158 t->sse -= old_time->z; in timelib_sub()
159 t->sse += t->z; in timelib_sub()
163 t->sse -= old_time->z; in timelib_sub()
164 t->sse += t->z; in timelib_sub()
/PHP-7.1/ext/intl/dateformat/
H A Ddateformat_format_object.cpp48 static bool valid_format(zval *z) { in valid_format() argument
49 if (Z_TYPE_P(z) == IS_LONG) { in valid_format()
50 zend_long lval = Z_LVAL_P(z); in valid_format()
90 zval *z; in PHP_FUNCTION() local
101 z = &ht->arData[idx].val; in PHP_FUNCTION()
102 if (Z_TYPE_P(z) != IS_UNDEF) { in PHP_FUNCTION()
107 if (idx >= ht->nNumUsed || !valid_format(z)) { in PHP_FUNCTION()
113 dateStyle = (DateFormat::EStyle)Z_LVAL_P(z); in PHP_FUNCTION()
117 z = &ht->arData[idx].val; in PHP_FUNCTION()
118 if (Z_TYPE_P(z) != IS_UNDEF) { in PHP_FUNCTION()
[all …]
/PHP-7.1/ext/imap/tests/
H A Dimap_fetchstructure_basic.phpt24 $z = imap_fetchstructure($stream_id,1);
31 var_dump(isset($z->$key));
33 var_dump($z->type);
34 var_dump($z->encoding);
35 var_dump($z->bytes);
36 var_dump($z->lines);
37 var_dump($z->ifparameters);
38 var_dump(is_object($z->parameters[0]));
/PHP-7.1/ext/com_dotnet/
H A Dcom_variant.c105 if (z) { in php_com_variant_from_zval()
106 ZVAL_DEREF(z); in php_com_variant_from_zval()
107 ztype = Z_TYPE_P(z); in php_com_variant_from_zval()
127 obj = CDNO_FETCH(z); in php_com_variant_from_zval()
155 V_I4(v) = Z_LVAL_P(z); in php_com_variant_from_zval()
158 V_I8(v) = Z_LVAL_P(z); in php_com_variant_from_zval()
164 V_R8(v) = Z_DVAL_P(z); in php_com_variant_from_zval()
169 olestring = php_com_string_to_olestring(Z_STRVAL_P(z), Z_STRLEN_P(z), codepage); in php_com_variant_from_zval()
196 ZVAL_NULL(z); in php_com_zval_from_variant()
225 ZVAL_LONG(z, V_INT(v)); in php_com_zval_from_variant()
[all …]
/PHP-7.1/ext/standard/
H A Dlcg.c58 int32_t z; in php_combined_lcg() local
67 z = LCG(s1) - LCG(s2); in php_combined_lcg()
68 if (z < 1) { in php_combined_lcg()
69 z += 2147483562; in php_combined_lcg()
72 return z * 4.656613e-10; in php_combined_lcg()
/PHP-7.1/ext/zip/examples/
H A Dim.php6 $z = new ZipArchive(); variable
7 $z->open(dirname(__FILE__) . '/test_im.zip');
8 $im_string = $z->getFromName("pear_item.gif");
H A Dfopen.php21 $z = new ZipArchive(); variable
22 $z->open(dirname(__FILE__) . '/test.zip');
23 $fp = $z->getStream('test');
/PHP-7.1/ext/pcre/tests/
H A Dbug40195.phpt6 var_dump(preg_match('@^(/([a-z]*))*$@', '//abcde', $m)); var_dump($m);
7 var_dump(preg_match('@^(/(?:[a-z]*))*$@', '//abcde', $m)); var_dump($m);
9 var_dump(preg_match('@^(/([a-z]+))+$@', '/a/abcde', $m)); var_dump($m);
10 var_dump(preg_match('@^(/(?:[a-z]+))+$@', '/a/abcde', $m)); var_dump($m);
H A Dmatch_flags.phpt32 string(1) "z"
44 string(1) "z"
78 string(1) "z"
105 string(1) "z"
/PHP-7.1/ext/zip/tests/
H A Dbug38943.inc13 $z = new myZip;
14 $z->testp = "foobar";
15 var_dump($z);
H A Dutils.inc3 function dump_entries_name($z) {
4 for($i=0; $i<$z->numFiles; $i++) {
5 $sb = $z->statIndex($i);
/PHP-7.1/Zend/
H A Dzend_gc.h135 #define GC_ZVAL_CHECK_POSSIBLE_ROOT(z) \ in END_EXTERN_C() argument
136 gc_check_possible_root((z)) in END_EXTERN_C()
145 static zend_always_inline void gc_check_possible_root(zval *z)
147 ZVAL_DEREF(z);
148 if (Z_COLLECTABLE_P(z) && UNEXPECTED(!Z_GC_INFO_P(z))) {
149 gc_possible_root(Z_COUNTED_P(z));
/PHP-7.1/ext/date/tests/
H A Ddate_interval_prop_dim.phpt6 $z = new Z('P2Y4DT6H8M');
8 $z->prop[1]=10;
10 $z->prop[$i] = $i;
H A Dbug73426.phpt2 Bug #73426 (createFromFormat with 'z' format char results in incorrect time)
8 $format = 'Y H:i:s z';
12 $format = 'z H:i:s Y';
/PHP-7.1/ext/standard/tests/strings/
H A Dadd-and-stripcslashes.phpt9 echo addcslashes('foo[ ]', 'A..z')."\n";
10 echo @addcslashes("zoo['.']", 'z..A')."\n";
11 echo addcslashes('abcdefghijklmnopqrstuvwxyz', "a\145..\160z")."\n";
21 \abcd\e\f\g\h\i\j\k\l\m\n\o\pqrstuvwxy\z
H A Daddcslashes_003.phpt14 var_dump( addcslashes('foo[ ]', 'A..z') );
15 var_dump( @addcslashes("zoo['.']", 'z..A') );
16 var_dump( addcslashes('abcdefghijklmnopqrstuvwxyz', "a\145..\160z") );
38 string(40) "\abcd\e\f\g\h\i\j\k\l\m\n\o\pqrstuvwxy\z"
/PHP-7.1/ext/gd/libgd/
H A Dgdtestft.c11 #define MAX4(x,y,z,w) \ argument
12 ((MAX((x),(y))) > (MAX((z),(w))) ? (MAX((x),(y))) : (MAX((z),(w))))
13 #define MIN4(x,y,z,w) \ argument
14 ((MIN((x),(y))) < (MIN((z),(w))) ? (MIN((x),(y))) : (MIN((z),(w))))
/PHP-7.1/ext/opcache/
H A Dzend_persist.c79 static void zend_persist_zval(zval *z);
305 switch (Z_TYPE_P(z)) { in zend_persist_zval()
310 Z_GC_FLAGS_P(z) |= flags; in zend_persist_zval()
312 if (Z_TYPE_P(z) == IS_CONSTANT) { in zend_persist_zval()
319 Z_ARR_P(z) = new_ptr; in zend_persist_zval()
322 if (Z_IMMUTABLE_P(z)) { in zend_persist_zval()
323 Z_ARR_P(z) = zend_accel_memdup(Z_ARR_P(z), sizeof(zend_array)); in zend_persist_zval()
341 Z_REF_P(z) = new_ptr; in zend_persist_zval()
350 Z_AST_P(z) = new_ptr; in zend_persist_zval()
354 Z_ASTVAL_P(z) = zend_persist_ast(Z_ASTVAL_P(z)); in zend_persist_zval()
[all …]
/PHP-7.1/ext/fileinfo/libmagic/
H A Dcompress.c335 z_stream z; in uncompressgzipped() local
366 z.next_out = *newch; in uncompressgzipped()
367 z.avail_out = HOWMANY; in uncompressgzipped()
368 z.zalloc = Z_NULL; in uncompressgzipped()
369 z.zfree = Z_NULL; in uncompressgzipped()
370 z.opaque = Z_NULL; in uncompressgzipped()
373 rc = inflateInit2(&z, -15); in uncompressgzipped()
375 file_error(ms, 0, "zlib: %s", z.msg); in uncompressgzipped()
379 rc = inflate(&z, Z_SYNC_FLUSH); in uncompressgzipped()
385 n = (size_t)z.total_out; in uncompressgzipped()
[all …]

Completed in 56 milliseconds

12345678910>>...16