๐ŸŒ
TextCompare
textcompare.org โ€บ php
Online Php Compare Tool
Find difference between 2 text files. Just input or paste original and modified text and click Compare button. Fast, Private & Unlimited.
๐ŸŒ
W3Schools
w3schools.com โ€บ php โ€บ php_compiler.asp
PHP Online Compiler (Editor / Interpreter)
With our online PHP compiler, you can edit PHP code, and view the result in your browser.
Discussions

What is the best free IDE(editor+debugger) for PHP ( like java intellij for Python pyCharm or VC++ for c++)
PhpStorm is probably the best choice, however, it's not free; but you can get a free license under one of the following conditions: you are a teacher/student: https://www.jetbrains.com/community/education/#students you are developing an open source project: https://www.jetbrains.com/shop/eform/opensource If you are employed, you should ask your employer to buy you a license. More on reddit.com
๐ŸŒ r/PHPhelp
17
5
November 5, 2021
security - How can I view PHP source code on a live site? - Stack Overflow
Is it possible to view the PHP code of a live website ? More on stackoverflow.com
๐ŸŒ stackoverflow.com
How to see PHP output in the browser?
You need to use a web server. On Linux, Apache or nginx. On Windows, IIS (Windows Pro version, doesnโ€™t come with Home version), or install Apache. That said, the above are for when you get more serious. For a quick web server, PHP has one built in. At a command line, enter: php -S localhost:port โ€œportโ€ can be any number you want between 0 and 65535 that isnโ€™t in use. 8000 and 8080 are common choices for this purpose. In your browser, navigate to http://localhost:8000/yourfile.php (whatever you named your PHP file.). More on reddit.com
๐ŸŒ r/vscode
11
6
August 27, 2023
How can you find which php file has the code that produced part of my webpage?
Chrome's Dev Tools should be able to say where each section of output came from, but it doesn't How would it know? All it can see is the output by the server, it doesn't have any clue to what on the server produced that output. Start with the drop down list, look for signs of a searchable class name on it (ie.
    ) as that may be hard coded. No luck there, move back up the DOM tree, keep searching for something unique. Once you can find a .php file with that, look in the code there to traverse back down to where the list came from
More on reddit.com
๐ŸŒ r/webdev
13
1
February 2, 2023
๐ŸŒ
OnlinePHP
onlinephp.io
PHP Sandbox - Execute PHP code online through your browser
Run PHP code in your browser online with this tool in 400+ PHP versions
๐ŸŒ
Files
files.gallery
Single-file PHP file manager, file sharing, file browser and photo gallery | Files
Beautiful code highlighter and markdown editor for viewing and editing text and code formats. Preview PDF documents and other document formats that are not supported by browser. Require login or create unique users with separate permissions and settings. Multi-language interface, assigned by default from detected browser language. Supports common and special image formats like HEIC PSD TIFF and DNG ยท Beautiful image viewer, displays IPTC, EXIF and GPS maps from your photos.
๐ŸŒ
Jumpshare
jumpshare.com โ€บ viewer โ€บ php
PHP Viewer - Open PHP File Online for Free | Jumpshare
Experience hassle-free viewing of PHP Source Code File (.php) files with our online PHP file viewer.
๐ŸŒ
Writephponline
writephponline.com
WriteCodeOnline - PHP | write and run php code online
Write PHP Online is an online code editor and compiler that helps you to write and test run PHP code online, learn PHP with our interactive tutorial.
๐ŸŒ
Tutorialspoint
tutorialspoint.com โ€บ compilers โ€บ online-php-webview.htm
PHP Web View Online
Try our PHP Web View Online (Version PHP 7.1.8) Write and Edit, Run, and Share your Phpweb Code online directly from your browser.
Find elsewhere
๐ŸŒ
FileHelper
filehelper.com โ€บ formats โ€บ php
Easily Open .PHP Files Online with FileHelper.com
FileHelper.com is a free web-based file utility that can open PHP Source Code files and over 150 other file formats directly in your web browser. It displays file properties, including metadata, and image EXIF data, along with information about the corresponding file type.
๐ŸŒ
OneCompiler
onecompiler.com โ€บ php
PHP Online Compiler
The editor shows sample boilerplate code when you choose language as PHP and start coding.
๐ŸŒ
PHP Playground
php-play.dev
PHP Playground
The Playground let you to execute basic PHP code in real time using WebAssembly technology.
๐ŸŒ
Visual Studio Code
code.visualstudio.com โ€บ docs โ€บ languages โ€บ php
PHP in Visual Studio Code
November 3, 2021 - VS Code uses the official PHP linter (php -l) for PHP language diagnostics.
๐ŸŒ
GitHub
github.com โ€บ php โ€บ php-src
GitHub - php/php-src: The PHP Interpreter ยท GitHub
The PHP Interpreter. Contribute to php/php-src development by creating an account on GitHub.
Starred by 40K users
Forked by 8K users
Languages ย  C 69.8% | PHP 27.7% | C++ 0.9% | Shell 0.4% | M4 0.4% | Lua 0.2%
๐ŸŒ
Soscisurvey
soscisurvey.de โ€บ tools โ€บ view-chars.php
View non-printable unicode characters
Online tool to display non-printable characters that may be hidden in copy&pasted strings ยท This web page (tool) does not store any information about you (no cookies, no IP logging) and it does not store any of the text that is written or pasted into the box above
๐ŸŒ
CleanCSS
cleancss.com โ€บ php-beautify
PHP Viewer, Formatter, Editor
Enter your messy, minified, or obfuscated PHP into the field above to have it cleaned up and made pretty. The editor above also contains helpful line numbers and syntax highlighting.
๐ŸŒ
Programiz
programiz.com โ€บ php โ€บ online-compiler
Online PHP Compiler - Programiz
Write and run your PHP code using our online compiler. Enjoy additional features like code sharing, dark mode, and support for multiple programming languages.
๐ŸŒ
Code Beautify
codebeautify.org โ€บ php-beautifier
PHP Beautifier and PHP Formatter Online
PHP Source Code Beautifier Online works well on Windows, MAC, Linux, Chrome, Firefox, Edge, and Safari.
๐ŸŒ
Nusphere
nusphere.com โ€บ products โ€บ php_viewer.htm
PHP Viewer
PHP viewer is a powerful development tool that enables users to view php files and the output they create. Download the PHP viewer and simplify viewing PHP files.
๐ŸŒ
Reddit
reddit.com โ€บ r/vscode โ€บ how to see php output in the browser?
r/vscode on Reddit: How to see PHP output in the browser?
August 27, 2023 -

I'm new to all of this (PHP, VS Code & remote debugging) but I've managed to connect to my remote server with VS Code and I am trying to learn PHP coding while I learn VS Code.

I opened the most simple file I could think of....

 <?php
phpinfo();

And I wanted to try just adding a breakpoint and stepping through the one line of code (baby steps).

It works fine. It shows text results in the Debug Console window, but I thought I'd see the output in a browser window somewhere.

I'd like to be able to see the output of the PHP code I am planning to write in the browser. Is that possible?