File tree Expand file tree Collapse file tree 2 files changed +30
-20
lines changed Expand file tree Collapse file tree 2 files changed +30
-20
lines changed Original file line number Diff line number Diff line change @@ -14,8 +14,6 @@ PHP NEWS
14
14
array). (ilutov)
15
15
. Fixed bug GH-19480 (error_log php.ini cannot be unset when open_basedir is
16
16
configured). (nielsdos)
17
- . Fixed bug GH-16319 (Prevent crash when displaying fiber backtrace with
18
- a null filename). (alexandre-daubois)
19
17
20
18
- Date:
21
19
. Fixed GH-17159: "P" format for ::createFromFormat swallows string literals.
Original file line number Diff line number Diff line change @@ -5,32 +5,44 @@ zend_test
5
5
--INI--
6
6
zend_test.observer.enabled=1
7
7
zend_test.observer.show_init_backtrace=1
8
+ zend_test.observer.show_output=1
9
+ zend_test.observer.observe_all=1
10
+ zend_test.observer.show_opcode=0
11
+ opcache.jit=0
8
12
--FILE--
9
13
<?php
10
14
$ fiber = new Fiber (function () {});
11
15
$ fiber ->start ();
12
16
echo "Test completed without crash \n" ;
13
17
?>
14
18
--EXPECTF--
15
- <!-- init '%s' -->
19
+ <!-- init %s -->
16
20
<!--
17
21
{main} %s
18
22
-->
19
- <!-- init Fiber::__construct() -->
20
- <!--
21
- Fiber::__construct()
22
- {main} %s
23
- -->
24
- <!-- init Fiber::start() -->
25
- <!--
26
- Fiber::start()
27
- {main} %s
28
- -->
29
- <!-- init {closure}() -->
30
- <!--
31
- {closure}()
32
- {main} [no active file]
33
- Fiber::start()
34
- {main} %s
35
- -->
23
+ <file %s>
24
+ <!-- init Fiber::__construct() -->
25
+ <!--
26
+ Fiber::__construct()
27
+ {main} %s
28
+ -->
29
+ <Fiber::__construct>
30
+ </Fiber::__construct>
31
+ <!-- init Fiber::start() -->
32
+ <!--
33
+ Fiber::start()
34
+ {main} %s
35
+ -->
36
+ <Fiber::start>
37
+ <!-- init {closure}() -->
38
+ <!--
39
+ {closure}()
40
+ {main} [no active file]
41
+ Fiber::start()
42
+ {main} %s
43
+ -->
44
+ <{closure}>
45
+ </{closure}>
46
+ </Fiber::start>
36
47
Test completed without crash
48
+ </file %s>
You can’t perform that action at this time.
0 commit comments