Software Alternatives, Accelerators & Startups

How to Use a Debugger in PHP

Xdebug Microsoft Authenticator Visual Studio Code
  1. 1
    Xdebug - Debugger and Profiler Tool for PHP
    Pricing:
    • Open Source

    #IDE #Text Editors #Software Development 19 social mentions

  2. One app to quickly and securely verify your identity online, for all of your accounts.
    { // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "name": "Listen for Xdebug", "type": "php", "request": "launch", "port": 9003 }, { "name": "Launch currently open script", "type": "php", "request": "launch", "program": "${file}", "cwd": "${fileDirname}", "port": 0, "runtimeArgs": [ "-dxdebug.start_with_request=yes" ], "env": { "XDEBUG_MODE": "debug,develop", "XDEBUG_CONFIG": "client_port=${port}" } }, { "name": "Launch Built-in web server", "type": "php", "request": "launch", "runtimeArgs": [ "-dxdebug.mode=debug", "-dxdebug.start_with_request=yes", "-S", "localhost:0" ], "program": "", "cwd": "${workspaceRoot}", "port": 9003, "serverReadyAction": { "pattern": "Development Server \\(http://localhost:([0-9]+)\\) started", "uriFormat": "http://localhost:%s", "action": "openExternally" } } ] }.

    #Identity And Access Management #Two Factor Authentication #Authentication 118 social mentions

  3. Build and debug modern web and cloud applications, by Microsoft
    Pricing:
    • Open Source
    Any IDE can probably be used to debug PHP with XDebug, but since it’s free and popular, I'll Use VSCode as an example.

    #Text Editors #IDE #Software Development 1030 social mentions

Discuss: How to Use a Debugger in PHP

Log in or Post with