Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Framework to develop simple Eclipse plugin using PHP/UsingThePlugin

Quick Start

Run PHP Scripts

  • Create a PHP file with the extension php
    • Contents can be <? echo "Hello, World!" ?>
  • Right click on the file and select "Evaluate as PHP"
  • Expected output is
Output is 'Hello, World!'
Return is '1'
  • Add some more PHP to the script
$var = 46;
echo $var;
  • Select in the editor the newly added lines
    • Right click and select "Evaluate as PHP"
    • Expected output is
Output is '46'
Return is '1'

Back to the top