Skip to content

Instantly share code, notes, and snippets.

@funivan
Created January 13, 2016 09:39
Show Gist options
  • Select an option

  • Save funivan/c96372fff8f3c1d5af2e to your computer and use it in GitHub Desktop.

Select an option

Save funivan/c96372fff8f3c1d5af2e to your computer and use it in GitHub Desktop.
xdebug 2.3 phpstorm 10.0.3 build 143.1770
version: 1
creator: xdebug 2.3.3
cmd: /www/test/test.php
part: 1
positions: line
events: Time
fl=(1) /www/test/todo.txt
fn=(1) include::(null)
1 820
fl=(2) /www/test/test.php
fn=(2) A->out
5 42364
cfl=(1)
cfn=(1)
calls=1 0 0
6 820
fl=(2)
fn=(3) run
11 23
cfl=(2)
cfn=(2)
calls=1 0 0
12 43184
fl=(2)
fn=(4) {main}
summary: 43226
1 17
cfl=(2)
cfn=(3)
calls=1 0 0
16 43208
<?
class A {
public function out() {
include 'todo.txt';
echo 'hello';
}
}
function run() {
(new A())->out();
}
run();
todo goes here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment