martomo / SublimeTextXdebug

Xdebug debugger client for Sublime Text
MIT License
564 stars 89 forks source link

debugger stuck on warning without possibility to proceed further #203

Closed 8ctopus closed 4 years ago

8ctopus commented 4 years ago

The debugger is stuck on a warning without possibility to proceed further. All works fine is I comment Warning in the break_on_exception array. The database password is intentionally incorrect for the demonstration.

2020-04-08_115223 2020-04-08_115232

The bug is easy to reproduce in this github project. Git clone the project, docker-compose up then start debugging and open url http://localhost:8000/connect-to-database.php (change password to 1234 to get the warning).

Environment

Sublime Text

Windows 10 Pro Sublime Text 3.2.2 Build 3211 Xdebug Client 1.1.2 Python 3.3.6 (default, Mar 29 2018, 23:30:25) [MSC v.1600 64 bit (AMD64)]

Server

Operating system: Alpine Linux in docker PHP/Xdebug version: php 7.3.16 xdebug 2.9.1

Configuration

php.ini/xdebug.ini

zend_extension=xdebug.so

xdebug.remote_enable=1
xdebug.remote_host=host.docker.internal
xdebug.remote_port=9000

xdebug.remote_log=/var/log/apache2/xdebug.log
xdebug.remote_log_level=7
xdebug.remote_mode=req
xdebug.remote_timeout=200

xdebug.remote_addr_header=
xdebug.remote_autostart=0
xdebug.remote_connect_back=0
xdebug.remote_cookie_expire_time=3600

Packages/User/Xdebug.sublime-settings

{
    "path_mapping": {
        "/var/www/site/public/" : "K:/dev/github/php-dev/dev/public/",
    },

    "url": "http://localhost:8000",

    "ide_key": "8ctopus",

    "host": "127.0.0.1",
    "port": 9000,

    "max_children": 32,

    "max_data": 1024,

    "max_depth": 1,

    "break_on_start": true,

    "break_on_exception": [
        "Fatal error",
        "Catchable fatal error",
        "Warning",
        "Parse error",
//        "Notice",
        "Strict standards",
        "Deprecated",
        "Xdebug",
        "Unknown error"
    ],

    "close_on_stop": false,

    "super_globals": true,

    "fullname_property": true,

    "hide_password": false,

    "pretty_output": false,

    "launch_browser": false,

    "browser_no_execute": false,

    "disable_layout": false,

    "debug_layout" : {
        "cols": [0.0, 0.5, 1.0],
        "rows": [0.0, 0.7, 1.0],
        "cells": [[0, 0, 2, 1], [0, 1, 1, 2], [1, 1, 2, 2]]
    },

    "breakpoint_group": 2,
    "breakpoint_index": 1,
    "context_group": 1,
    "context_index": 0,
    "stack_group": 2,
    "stack_index": 0,
    "watch_group": 1,
    "watch_index": 1,
    "breakpoint_enabled": "circle",
    "breakpoint_disabled": "dot",
    "breakpoint_current": "",
    "current_line": "bookmark",
    "python_path" : "",
    "debug": true
}

*.sublime-project

{
    "folders":
    [
        {
            "path": "."
        },
        {
            "path": "K:\\dev\\github\\mariadb-alpine"
        },
        {
            "path": "K:\\dev\\github\\apache-php-alpine"
        }
    ],
    "settings":
    {
        "debug.configurations":
        [
            {
                "name": "Listen for XDebug",
                "type": "php",
                "request": "launch",
                "hostname": "127.0.0.1",
                "port": 9000,

                "pathMappings":
                {
                    "/var/www/site/": "K:\\dev\\github\\php-dev\\dev\\",
                },

                "stopOnEntry": false,

                "log": true
            },
        ]
    }
}

Logs

Console output:

Packages/User/Xdebug.log:

[04/08/2020 11:51:40AM] INFO - ==== Loading "Xdebug Client.sublime-package" package ====
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<init xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" fileuri="file:///var/www/site/public/connect-to-database.php" language="PHP" xdebug:language_version="7.3.13" protocol_version="1.0" appid="27" idekey="david"><engine version="2.9.1"><![CDATA[Xdebug]]></engine><author><![CDATA[Derick Rethans]]></author><url><![CDATA[https://xdebug.org]]></url><copyright><![CDATA[Copyright (c) 2002-2020 by Derick Rethans]]></copyright></init>
[04/08/2020 11:51:48AM] DEBUG - [Send command] feature_set -i 1 -v 1 -n show_hidden
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="1" feature="show_hidden" success="1"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] feature_set -i 2 -v 32 -n max_children
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="2" feature="max_children" success="1"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] feature_set -i 3 -v 1024 -n max_data
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="3" feature="max_data" success="1"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] feature_set -i 4 -v 1 -n max_depth
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="feature_set" transaction_id="4" feature="max_depth" success="1"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 5 -x "Fatal error" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="5" id="270022"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 6 -x "Catchable fatal error" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="6" id="270023"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 7 -x "Warning" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="7" id="270024"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 8 -x "Parse error" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="8" id="270025"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 9 -x "Strict standards" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="9" id="270026"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 10 -x "Deprecated" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="10" id="270027"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 11 -x "Xdebug" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="11" id="270028"></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] breakpoint_set -i 12 -x "Unknown error" -t exception
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="breakpoint_set" transaction_id="12" id="270029"></response>
[04/08/2020 11:51:48AM] INFO - Break on start: K:\dev\github\php-dev\dev\public\connect-to-database.php
[04/08/2020 11:51:48AM] DEBUG - [Send command] context_get -i 13 -c 1
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="13" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] context_get -i 14
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="14" status="starting" reason="ok"><error code="301"><message><![CDATA[stack depth invalid]]></message></error></response>
[04/08/2020 11:51:48AM] DEBUG - [Send command] stack_get -i 15
[04/08/2020 11:51:48AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="15"></response>
[04/08/2020 11:51:51AM] DEBUG - [Send command] step_into -i 16
[04/08/2020 11:51:51AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_into" transaction_id="16" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="8"></xdebug:message></response>
[04/08/2020 11:51:51AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:8
[04/08/2020 11:51:51AM] DEBUG - [Send command] context_get -i 17 -c 1
[04/08/2020 11:51:51AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="17" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:51AM] DEBUG - [Send command] context_get -i 18
[04/08/2020 11:51:51AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="18" context="0"><property name="$mysqli" fullname="$mysqli" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$sql" fullname="$sql" type="uninitialized"></property></response>
[04/08/2020 11:51:51AM] DEBUG - [Send command] stack_get -i 19
[04/08/2020 11:51:51AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="19"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="8"></stack></response>
[04/08/2020 11:51:51AM] DEBUG - [Send command] step_over -i 20
[04/08/2020 11:51:51AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="20" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="10"></xdebug:message></response>
[04/08/2020 11:51:52AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:10
[04/08/2020 11:51:52AM] DEBUG - [Send command] context_get -i 21 -c 1
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="21" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:52AM] DEBUG - [Send command] context_get -i 22
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="22" context="0"><property name="$mysqli" fullname="$mysqli" type="uninitialized"></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$sql" fullname="$sql" type="uninitialized"></property></response>
[04/08/2020 11:51:52AM] DEBUG - [Send command] stack_get -i 23
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="23"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="10"></stack></response>
[04/08/2020 11:51:52AM] DEBUG - [Send command] step_over -i 24
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="24" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="10" exception="Warning" code="2"><![CDATA[mysqli::__construct(): (HY000/1045): Access denied for user 'root'@'dev-web.php-dev_default' (using password: YES)]]></xdebug:message></response>
[04/08/2020 11:51:52AM] INFO - Warning: mysqli::__construct(): (HY000/1045): Access denied for user 'root'@'dev-web.php-dev_default' (using password: YES)
[04/08/2020 11:51:52AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:10
[04/08/2020 11:51:52AM] DEBUG - [Send command] context_get -i 25 -c 1
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="25" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:52AM] DEBUG - [Send command] context_get -i 26
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="26" context="0"></response>
[04/08/2020 11:51:52AM] DEBUG - [Send command] stack_get -i 27
[04/08/2020 11:51:52AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="27"><stack where="mysqli-&gt;__construct" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="10"></stack><stack where="{main}" level="1" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="10"></stack></response>
[04/08/2020 11:51:56AM] DEBUG - [Send command] step_over -i 28
[04/08/2020 11:51:56AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="28" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="12"></xdebug:message></response>
[04/08/2020 11:51:56AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:12
[04/08/2020 11:51:56AM] DEBUG - [Send command] context_get -i 29 -c 1
[04/08/2020 11:51:56AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="29" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:56AM] DEBUG - [Send command] context_get -i 30
[04/08/2020 11:51:56AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="30" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="12" exception="Warning" code="2"><![CDATA[main(): Property access is not allowed yet]]></xdebug:message></response>
[04/08/2020 11:51:56AM] DEBUG - [Send command] stack_get -i 31
[04/08/2020 11:51:56AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="31"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="12"></stack></response>
[04/08/2020 11:51:57AM] DEBUG - [Send command] step_over -i 32
[04/08/2020 11:51:57AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_over" transaction_id="32" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="12" exception="Warning" code="2"><![CDATA[main(): Property access is not allowed yet]]></xdebug:message></response>
[04/08/2020 11:51:57AM] INFO - Warning: main(): Property access is not allowed yet
[04/08/2020 11:51:57AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:12
[04/08/2020 11:51:57AM] DEBUG - [Send command] context_get -i 33 -c 1
[04/08/2020 11:51:57AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="33" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:51:57AM] DEBUG - [Send command] context_get -i 34
[04/08/2020 11:51:57AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="34" context="0"><property name="$mysqli" fullname="$mysqli" type="object" classname="mysqli" children="1" numchildren="19" page="0" pagesize="32"><property name="affected_rows" fullname="$mysqli-&gt;affected_rows" facet="public" type="null"></property><property name="client_info" fullname="$mysqli-&gt;client_info" facet="public" type="null"></property><property name="client_version" fullname="$mysqli-&gt;client_version" facet="public" type="null"></property><property name="connect_errno" fullname="$mysqli-&gt;connect_errno" facet="public" type="null"></property><property name="connect_error" fullname="$mysqli-&gt;connect_error" facet="public" type="null"></property><property name="errno" fullname="$mysqli-&gt;errno" facet="public" type="null"></property><property name="error" fullname="$mysqli-&gt;error" facet="public" type="null"></property><property name="error_list" fullname="$mysqli-&gt;error_list" facet="public" type="null"></property><property name="field_count" fullname="$mysqli-&gt;field_count" facet="public" type="null"></property><property name="host_info" fullname="$mysqli-&gt;host_info" facet="public" type="null"></property><property name="info" fullname="$mysqli-&gt;info" facet="public" type="null"></property><property name="insert_id" fullname="$mysqli-&gt;insert_id" facet="public" type="null"></property><property name="server_info" fullname="$mysqli-&gt;server_info" facet="public" type="null"></property><property name="server_version" fullname="$mysqli-&gt;server_version" facet="public" type="null"></property><property name="stat" fullname="$mysqli-&gt;stat" facet="public" type="null"></property><property name="sqlstate" fullname="$mysqli-&gt;sqlstate" facet="public" type="null"></property><property name="protocol_version" fullname="$mysqli-&gt;protocol_version" facet="public" type="null"></property><property name="thread_id" fullname="$mysqli-&gt;thread_id" facet="public" type="null"></property><property name="warning_count" fullname="$mysqli-&gt;warning_count" facet="public" type="null"></property></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$sql" fullname="$sql" type="uninitialized"></property></response>
[04/08/2020 11:51:57AM] DEBUG - [Send command] stack_get -i 35
[04/08/2020 11:51:57AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="35"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="12"></stack></response>
[04/08/2020 11:52:12AM] DEBUG - [Send command] step_out -i 36
[04/08/2020 11:52:12AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_out" transaction_id="36" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="12" exception="Warning" code="2"><![CDATA[main(): Couldn't fetch mysqli]]></xdebug:message></response>
[04/08/2020 11:52:12AM] INFO - Warning: main(): Couldn't fetch mysqli
[04/08/2020 11:52:12AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:12
[04/08/2020 11:52:12AM] DEBUG - [Send command] context_get -i 37 -c 1
[04/08/2020 11:52:12AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="37" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:52:12AM] DEBUG - [Send command] context_get -i 38
[04/08/2020 11:52:12AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="38" context="0"><property name="$mysqli" fullname="$mysqli" type="object" classname="mysqli" children="1" numchildren="19" page="0" pagesize="32"><property name="affected_rows" fullname="$mysqli-&gt;affected_rows" facet="public" type="null"></property><property name="client_info" fullname="$mysqli-&gt;client_info" facet="public" type="null"></property><property name="client_version" fullname="$mysqli-&gt;client_version" facet="public" type="null"></property><property name="connect_errno" fullname="$mysqli-&gt;connect_errno" facet="public" type="null"></property><property name="connect_error" fullname="$mysqli-&gt;connect_error" facet="public" type="null"></property><property name="errno" fullname="$mysqli-&gt;errno" facet="public" type="null"></property><property name="error" fullname="$mysqli-&gt;error" facet="public" type="null"></property><property name="error_list" fullname="$mysqli-&gt;error_list" facet="public" type="null"></property><property name="field_count" fullname="$mysqli-&gt;field_count" facet="public" type="null"></property><property name="host_info" fullname="$mysqli-&gt;host_info" facet="public" type="null"></property><property name="info" fullname="$mysqli-&gt;info" facet="public" type="null"></property><property name="insert_id" fullname="$mysqli-&gt;insert_id" facet="public" type="null"></property><property name="server_info" fullname="$mysqli-&gt;server_info" facet="public" type="null"></property><property name="server_version" fullname="$mysqli-&gt;server_version" facet="public" type="null"></property><property name="stat" fullname="$mysqli-&gt;stat" facet="public" type="null"></property><property name="sqlstate" fullname="$mysqli-&gt;sqlstate" facet="public" type="null"></property><property name="protocol_version" fullname="$mysqli-&gt;protocol_version" facet="public" type="null"></property><property name="thread_id" fullname="$mysqli-&gt;thread_id" facet="public" type="null"></property><property name="warning_count" fullname="$mysqli-&gt;warning_count" facet="public" type="null"></property></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$sql" fullname="$sql" type="uninitialized"></property></response>
[04/08/2020 11:52:12AM] DEBUG - [Send command] stack_get -i 39
[04/08/2020 11:52:12AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="39"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="12"></stack></response>
[04/08/2020 11:52:13AM] DEBUG - [Send command] step_out -i 40
[04/08/2020 11:52:13AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="step_out" transaction_id="40" status="break" reason="ok"><xdebug:message filename="file:///var/www/site/public/connect-to-database.php" lineno="12" exception="Warning" code="2"><![CDATA[main(): Couldn't fetch mysqli]]></xdebug:message></response>
[04/08/2020 11:52:13AM] INFO - Warning: main(): Couldn't fetch mysqli
[04/08/2020 11:52:13AM] INFO - Break: K:\dev\github\php-dev\dev\public\connect-to-database.php:12
[04/08/2020 11:52:13AM] DEBUG - [Send command] context_get -i 41 -c 1
[04/08/2020 11:52:13AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="41" context="1"><property name="$_COOKIE" fullname="$_COOKIE" type="array" children="1" numchildren="1" page="0" pagesize="32"><property name="XDEBUG_SESSION" fullname="$_COOKIE[&quot;XDEBUG_SESSION&quot;]" type="string" size="5" encoding="base64"><![CDATA[ZGF2aWQ=]]></property></property><property name="$_ENV" fullname="$_ENV" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_FILES" fullname="$_FILES" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_GET" fullname="$_GET" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_POST" fullname="$_POST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_REQUEST" fullname="$_REQUEST" type="array" children="0" numchildren="0" page="0" pagesize="32"></property><property name="$_SERVER" fullname="$_SERVER" type="array" children="1" numchildren="37" page="0" pagesize="32"><property name="HTTP_HOST" fullname="$_SERVER[&quot;HTTP_HOST&quot;]" type="string" size="14" encoding="base64"><![CDATA[bG9jYWxob3N0OjgwMDA=]]></property><property name="HTTP_CONNECTION" fullname="$_SERVER[&quot;HTTP_CONNECTION&quot;]" type="string" size="10" encoding="base64"><![CDATA[a2VlcC1hbGl2ZQ==]]></property><property name="HTTP_CACHE_CONTROL" fullname="$_SERVER[&quot;HTTP_CACHE_CONTROL&quot;]" type="string" size="9" encoding="base64"><![CDATA[bWF4LWFnZT0w]]></property><property name="HTTP_UPGRADE_INSECURE_REQUESTS" fullname="$_SERVER[&quot;HTTP_UPGRADE_INSECURE_REQUESTS&quot;]" type="string" size="1" encoding="base64"><![CDATA[MQ==]]></property><property name="HTTP_USER_AGENT" fullname="$_SERVER[&quot;HTTP_USER_AGENT&quot;]" type="string" size="113" encoding="base64"><![CDATA[TW96aWxsYS81LjAgKFdpbmRvd3MgTlQgMTAuMDsgV2luNjQ7IHg2NCkgQXBwbGVXZWJLaXQvNTM3LjM2IChLSFRNTCwgbGlrZSBHZWNrbykgQ2hyb21lLzgyLjAuNDA1OC4wIFNhZmFyaS81MzcuMzY=]]></property><property name="HTTP_ACCEPT" fullname="$_SERVER[&quot;HTTP_ACCEPT&quot;]" type="string" size="124" encoding="base64"><![CDATA[dGV4dC9odG1sLGFwcGxpY2F0aW9uL3hodG1sK3htbCxhcHBsaWNhdGlvbi94bWw7cT0wLjksaW1hZ2Uvd2VicCxpbWFnZS9hcG5nLCovKjtxPTAuOCxhcHBsaWNhdGlvbi9zaWduZWQtZXhjaGFuZ2U7dj1iMztxPTAuOQ==]]></property><property name="HTTP_SEC_FETCH_SITE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_SITE&quot;]" type="string" size="11" encoding="base64"><![CDATA[c2FtZS1vcmlnaW4=]]></property><property name="HTTP_SEC_FETCH_MODE" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_MODE&quot;]" type="string" size="8" encoding="base64"><![CDATA[bmF2aWdhdGU=]]></property><property name="HTTP_SEC_FETCH_USER" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_USER&quot;]" type="string" size="2" encoding="base64"><![CDATA[PzE=]]></property><property name="HTTP_SEC_FETCH_DEST" fullname="$_SERVER[&quot;HTTP_SEC_FETCH_DEST&quot;]" type="string" size="8" encoding="base64"><![CDATA[ZG9jdW1lbnQ=]]></property><property name="HTTP_REFERER" fullname="$_SERVER[&quot;HTTP_REFERER&quot;]" type="string" size="22" encoding="base64"><![CDATA[aHR0cDovL2xvY2FsaG9zdDo4MDAwLw==]]></property><property name="HTTP_ACCEPT_ENCODING" fullname="$_SERVER[&quot;HTTP_ACCEPT_ENCODING&quot;]" type="string" size="17" encoding="base64"><![CDATA[Z3ppcCwgZGVmbGF0ZSwgYnI=]]></property><property name="HTTP_ACCEPT_LANGUAGE" fullname="$_SERVER[&quot;HTTP_ACCEPT_LANGUAGE&quot;]" type="string" size="14" encoding="base64"><![CDATA[ZW4tVVMsZW47cT0wLjk=]]></property><property name="HTTP_COOKIE" fullname="$_SERVER[&quot;HTTP_COOKIE&quot;]" type="string" size="20" encoding="base64"><![CDATA[WERFQlVHX1NFU1NJT049ZGF2aWQ=]]></property><property name="PATH" fullname="$_SERVER[&quot;PATH&quot;]" type="string" size="60" encoding="base64"><![CDATA[L3Vzci9sb2NhbC9zYmluOi91c3IvbG9jYWwvYmluOi91c3Ivc2JpbjovdXNyL2Jpbjovc2JpbjovYmlu]]></property><property name="SERVER_SIGNATURE" fullname="$_SERVER[&quot;SERVER_SIGNATURE&quot;]" type="string" size="70" encoding="base64"><![CDATA[PGFkZHJlc3M+QXBhY2hlLzIuNC40MyAoVW5peCkgU2VydmVyIGF0IGxvY2FsaG9zdCBQb3J0IDgwMDA8L2FkZHJlc3M+Cg==]]></property><property name="SERVER_SOFTWARE" fullname="$_SERVER[&quot;SERVER_SOFTWARE&quot;]" type="string" size="20" encoding="base64"><![CDATA[QXBhY2hlLzIuNC40MyAoVW5peCk=]]></property><property name="SERVER_NAME" fullname="$_SERVER[&quot;SERVER_NAME&quot;]" type="string" size="9" encoding="base64"><![CDATA[bG9jYWxob3N0]]></property><property name="SERVER_ADDR" fullname="$_SERVER[&quot;SERVER_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMw==]]></property><property name="SERVER_PORT" fullname="$_SERVER[&quot;SERVER_PORT&quot;]" type="string" size="4" encoding="base64"><![CDATA[ODAwMA==]]></property><property name="REMOTE_ADDR" fullname="$_SERVER[&quot;REMOTE_ADDR&quot;]" type="string" size="10" encoding="base64"><![CDATA[MTcyLjIxLjAuMQ==]]></property><property name="DOCUMENT_ROOT" fullname="$_SERVER[&quot;DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="REQUEST_SCHEME" fullname="$_SERVER[&quot;REQUEST_SCHEME&quot;]" type="string" size="4" encoding="base64"><![CDATA[aHR0cA==]]></property><property name="CONTEXT_PREFIX" fullname="$_SERVER[&quot;CONTEXT_PREFIX&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property><property name="CONTEXT_DOCUMENT_ROOT" fullname="$_SERVER[&quot;CONTEXT_DOCUMENT_ROOT&quot;]" type="string" size="20" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWM=]]></property><property name="SERVER_ADMIN" fullname="$_SERVER[&quot;SERVER_ADMIN&quot;]" type="string" size="15" encoding="base64"><![CDATA[eW91QGV4YW1wbGUuY29t]]></property><property name="SCRIPT_FILENAME" fullname="$_SERVER[&quot;SCRIPT_FILENAME&quot;]" type="string" size="44" encoding="base64"><![CDATA[L3Zhci93d3cvc2l0ZS9wdWJsaWMvY29ubmVjdC10by1kYXRhYmFzZS5waHA=]]></property><property name="REMOTE_PORT" fullname="$_SERVER[&quot;REMOTE_PORT&quot;]" type="string" size="5" encoding="base64"><![CDATA[NTEzMjI=]]></property><property name="GATEWAY_INTERFACE" fullname="$_SERVER[&quot;GATEWAY_INTERFACE&quot;]" type="string" size="7" encoding="base64"><![CDATA[Q0dJLzEuMQ==]]></property><property name="SERVER_PROTOCOL" fullname="$_SERVER[&quot;SERVER_PROTOCOL&quot;]" type="string" size="8" encoding="base64"><![CDATA[SFRUUC8xLjE=]]></property><property name="REQUEST_METHOD" fullname="$_SERVER[&quot;REQUEST_METHOD&quot;]" type="string" size="3" encoding="base64"><![CDATA[R0VU]]></property><property name="QUERY_STRING" fullname="$_SERVER[&quot;QUERY_STRING&quot;]" type="string" size="0" encoding="base64"><![CDATA[]]></property></property></response>
[04/08/2020 11:52:14AM] DEBUG - [Send command] context_get -i 42
[04/08/2020 11:52:14AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="context_get" transaction_id="42" context="0"><property name="$mysqli" fullname="$mysqli" type="object" classname="mysqli" children="1" numchildren="19" page="0" pagesize="32"><property name="affected_rows" fullname="$mysqli-&gt;affected_rows" facet="public" type="null"></property><property name="client_info" fullname="$mysqli-&gt;client_info" facet="public" type="null"></property><property name="client_version" fullname="$mysqli-&gt;client_version" facet="public" type="null"></property><property name="connect_errno" fullname="$mysqli-&gt;connect_errno" facet="public" type="null"></property><property name="connect_error" fullname="$mysqli-&gt;connect_error" facet="public" type="null"></property><property name="errno" fullname="$mysqli-&gt;errno" facet="public" type="null"></property><property name="error" fullname="$mysqli-&gt;error" facet="public" type="null"></property><property name="error_list" fullname="$mysqli-&gt;error_list" facet="public" type="null"></property><property name="field_count" fullname="$mysqli-&gt;field_count" facet="public" type="null"></property><property name="host_info" fullname="$mysqli-&gt;host_info" facet="public" type="null"></property><property name="info" fullname="$mysqli-&gt;info" facet="public" type="null"></property><property name="insert_id" fullname="$mysqli-&gt;insert_id" facet="public" type="null"></property><property name="server_info" fullname="$mysqli-&gt;server_info" facet="public" type="null"></property><property name="server_version" fullname="$mysqli-&gt;server_version" facet="public" type="null"></property><property name="stat" fullname="$mysqli-&gt;stat" facet="public" type="null"></property><property name="sqlstate" fullname="$mysqli-&gt;sqlstate" facet="public" type="null"></property><property name="protocol_version" fullname="$mysqli-&gt;protocol_version" facet="public" type="null"></property><property name="thread_id" fullname="$mysqli-&gt;thread_id" facet="public" type="null"></property><property name="warning_count" fullname="$mysqli-&gt;warning_count" facet="public" type="null"></property></property><property name="$result" fullname="$result" type="uninitialized"></property><property name="$sql" fullname="$sql" type="uninitialized"></property></response>
[04/08/2020 11:52:14AM] DEBUG - [Send command] stack_get -i 43
[04/08/2020 11:52:14AM] DEBUG - [Response data] <?xml version="1.0" encoding="iso-8859-1"?>
<response xmlns="urn:debugger_protocol_v1" xmlns:xdebug="https://xdebug.org/dbgp/xdebug" command="stack_get" transaction_id="43"><stack where="{main}" level="0" type="file" filename="file:///var/www/site/public/connect-to-database.php" lineno="12"></stack></response>
martomo commented 4 years ago

It seems you commented out Notice instead of Warning in the break_on_exception configuration.

You could try the following, which does not break on both Notice and Warning exceptions:

    "break_on_exception": [
        "Fatal error",
        "Catchable fatal error",
        "Parse error",
        "Strict standards",
        "Deprecated",
        "Xdebug",
        "Unknown error"
    ],
8ctopus commented 4 years ago

Hi @martomo, thanks for the quick reply.

If I comment both notices and warnings, all works fine. If I comment only notices or use the default array (notices enabled), I can't get past line 12, I get the same warning every time I "Step Over", "Step Out", ...

I tested the same config in Visual Studio Code and it behaves the same as with Sublime Text / xDebug Client. And I found this thread on stackoverflow.

The conclusion is that it is not to be related to the plugin itself but to the way errors are managed in php7. Solution being to comment warnings.

Thank you for taking the time.