rfc:stack-frame-class
Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
rfc:stack-frame-class [2020/07/09 06:48] brzuchal added info on getTrace arguments and new methods and properties |
rfc:stack-frame-class [2020/08/04 08:00] brzuchal change status to declined |
||
---|---|---|---|
Line 1: | Line 1: | ||
====== PHP RFC: StackFrame class ====== | ====== PHP RFC: StackFrame class ====== | ||
- | * Version: | + | * Version: |
* Date: 2020-07-07 | * Date: 2020-07-07 | ||
* Author: Michał Marcin Brzuchalski, | * Author: Michał Marcin Brzuchalski, | ||
- | * Status: | + | * Status: |
* Target Version: PHP 8.0 | * Target Version: PHP 8.0 | ||
* First Published at: http:// | * First Published at: http:// | ||
Line 18: | Line 18: | ||
==== StackFrame class ==== | ==== StackFrame class ==== | ||
- | '' | + | '' |
There are additional properties and methods which expose additional information: | There are additional properties and methods which expose additional information: | ||
- | * property '' | + | * property '' |
- | * property '' | + | * property '' |
<code php> | <code php> | ||
final class StackFrame implements ArrayAccess | final class StackFrame implements ArrayAccess | ||
{ | { | ||
- | public | + | public |
| | ||
- | public | + | public |
| | ||
- | public | + | public ?string $function; |
| | ||
- | public | + | public ?string $class; |
| | ||
- | public | + | public ?object $object; |
- | public | + | public ?string $objectClass; |
- | public | + | public |
+ | |||
+ | public | ||
| | ||
- | public | + | public array $args = []; |
| | ||
public static function getTrace(int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT, | public static function getTrace(int $options = DEBUG_BACKTRACE_PROVIDE_OBJECT, | ||
- | |||
- | public function getFile(): string {} | ||
- | |||
- | public function getLine(): int {} | ||
- | |||
- | public function getFunction(): | ||
- | |||
- | public function getClass(): ?string {} | ||
- | |||
- | public function getObject(): | ||
- | | ||
- | public function getObjectClass(): | ||
- | |||
- | public function getClosure(): | ||
- | |||
- | public function getType(): ?string {} | ||
- | |||
- | public function getArgs(): array {} | ||
} | } | ||
</ | </ | ||
Line 114: | Line 98: | ||
===== Proposed Voting Choices ===== | ===== Proposed Voting Choices ===== | ||
- | As this is a language | + | As this is a change |
The vote will be a simple Yes/No for '' | The vote will be a simple Yes/No for '' | ||
+ | |||
+ | ===== Vote ===== | ||
+ | Voting opened 2020-07-21 and closes 2020-08-04. | ||
+ | |||
+ | <doodle title=" | ||
+ | * Yes | ||
+ | * No | ||
+ | </ | ||
+ | |||
+ | '''' | ||
+ | |||
+ | <doodle title=" | ||
+ | * Yes | ||
+ | * No | ||
+ | </ | ||
===== Implementation ===== | ===== Implementation ===== | ||
* [[https:// | * [[https:// |
rfc/stack-frame-class.txt · Last modified: 2020/08/04 08:00 by brzuchal