Home
last modified time | relevance | path

Searched refs:h (Results 1 – 25 of 572) sorted by path

12345678910>>...23

/PHP-7.4/
H A D.editorconfig12 [{*.{awk,bat,c,cpp,d,h,l,re,skl,w32,y},Makefile*}]
H A D.gdbinit356 printf "%d => ", $p->h
H A D.gitignore63 confdefs.h
86 config.h
87 config.h.in
99 /main/build-defs.h
100 /main/php_config.h.in
101 /main/php_config.h
102 /Zend/zend_config.h
164 /Zend/zend_ini_parser.h
204 /main/config.w32.h
212 /win32/wsyslog.h
[all …]
H A DCODING_STANDARDS.md211 `php_modulename.h`.
218 `php_modulename.h`.
226 3. Header file that is used by other sources must be named `php_modulename.h`.
H A DCONTRIBUTING.md138 ├─ zend_vm_execute.h # Generated by `Zend/zend_vm_gen.php`
140 ├─ zend_vm_opcodes.h # Generated by `Zend/zend_vm_gen.php`
179 ├─ unicode_data.h # Generated by `ext/mbstring/ucgendat/ucgendat.php`
185 ├─ php_pdo_mysql_sqlstate.h # Generated by `ext/pdo_mysql/get_error_codes.php`
193 ├─ credits_ext.h # Generated by `scripts/dev/credits`
194 ├─ credits_sapi.h # Generated by `scripts/dev/credits`
195 ├─ html_tables.h # Generated by `ext/standard/html_tables/html_table_gen.php`
210 ├─ php_version.h # Generated by release managers using `configure`
215 ├─ mime_type_map.h # Generated by `sapi/cli/generate_mime_type_map.php`
H A DNEWS1235 . Fixed bug #78983 (pdo_pgsql config.w32 cannot find libpq-fe.h). (SATŌ
1393 . Fixed bug #78788 (./configure generates invalid php_version.h). (max)
2016 . Fixed bug #76345 (zip.h not found). (Michael Maroszek)
2325 . Fixed bug #75684 (In mysqlnd_ext_plugin.h the plugin methods family has
2521 . Fixed bug #76767 (‘asm’ operand has impossible constraints in zend_operators.h).
H A DREADME.md46 *See `./configure -h` for configuration options.*
50 *See `make -h` for make options.*
H A DUPGRADING.INTERNALS11 h. Immutable classes and op_arrays
139 h. Opcache may make classes and op_arrays immutable. Such classes are marked
303 - Unused ApplicationServices/ApplicationServices.h headers check and
/PHP-7.4/TSRM/
H A Dthreads.m469 #include <pthread.h>
70 #include <stddef.h>
H A Dtsrm.m425 if test -r "$1/include/st.h"; then
28 elif test -r "$1/st.h"; then
32 AC_CHECK_HEADERS(st.h,[],[
/PHP-7.4/Zend/
H A DMakefile.frag5 $(builddir)/zend_language_scanner.lo: $(srcdir)/zend_language_parser.h
6 $(builddir)/zend_ini_scanner.lo: $(srcdir)/zend_ini_parser.h
11 $(srcdir)/zend_language_parser.h: $(srcdir)/zend_language_parser.c
20 @$(SED) -e 's,^int zendparse\(.*\),ZEND_API int zendparse\1,g' < $(srcdir)/zend_language_parser.h \
21 > $(srcdir)/zend_language_parser.h.tmp && \
22 mv $(srcdir)/zend_language_parser.h.tmp $(srcdir)/zend_language_parser.h
25 > $(srcdir)/zend_language_parser.h.tmp && \
26 mv $(srcdir)/zend_language_parser.h.tmp $(srcdir)/zend_language_parser.h
28 $(srcdir)/zend_ini_parser.h: $(srcdir)/zend_ini_parser.c
35 $(builddir)/zend_highlight.lo $(builddir)/zend_compile.lo: $(srcdir)/zend_language_parser.h
[all …]
H A DREADME.md41 Most parts of the old zend_execute.c go into `zend_vm_def.h`. Here you can find
123 `zend_vm_def.h` and `zend_vm_execute.skl` as input and produces
124 `zend_vm_opcodes.h` and `zend_vm_execute.h`. The first file is a list of opcode
125 definitions. It is included from `zend_compile.h`. The second one is an executor
133 `zend_vm_def.h` or generated file `zend_vm_execute.h`. Debugging with original
H A DZend.m455 #include <float.h>
76 #include <float.h>
159 #include <limits.h>
258 #include <stdio.h>
391 #include <math.h>
392 #include <stdlib.h>
420 #include <math.h>
421 #include <stdlib.h>
452 #include <math.h>
453 #include <stdlib.h>
[all …]
/PHP-7.4/Zend/tests/
H A Dbug22836.phpt13 $h =& f();
H A Dbug47714.phpt16 $h = new handler();
17 $h->handle($exception);
H A Dbug52193.phpt9 var_dump($h = (array) function () { return 2; });
10 var_dump($h[0]());
12 $i = function () use (&$h) {
13 return $h;
47 ["h"]=>
59 ["h"]=>
H A Dbug71539_1.phpt6 $x->h =& $x->i;
7 $x->h = 42;
28 ["h"]=>
H A Dclosure_035.phpt7 $h = function () use ($x) {
11 return $h();
H A Ddereference_004.phpt11 $h = array();
12 $h[] = new stdclass;
13 $this->x = $h;
H A Ddereference_008.phpt21 $h = &$foo->$a();
22 $h[] = 2;
H A Ddereference_009.phpt14 var_dump($h =& a());
15 $h[] = 1;
18 $h[] = array($h);
H A Ddereference_011.phpt18 $h = &$foo->a();
19 $h[] = 1;
20 $h[] = $foo;
H A Ddereference_012.phpt29 $h = $foo->b();
30 var_dump($h);
32 $h[0] = 3;
33 var_dump($h);
H A Ddereference_014.phpt22 $h = $foo->a()[0]->a;
23 var_dump($h);
25 $h = foo::b()[1]->b;
26 var_dump($h);
H A Dforeach_010.phpt5 $o = (object)['a'=>0, 'b'=>1, 'c'=>2, 'd'=>3, 'e'=>4, 'f'=>5, 'g'=>6, 'h'=>7];

Completed in 138 milliseconds

12345678910>>...23