Recently I have used the small tool ppform again. The magic of this thing is that you can use PHP to quickly develop a small tool like Delphi. For example, the following small tool I am using can directly call PHP functions. Just use With a small amount of code, the entire function is completed, as follows:
PLAIN TEXTPHP:
<?php require_once("ppform.php"); ?>
<?php
class __PPFORM__ extends TPPForm
{
function genBtnClick($Sender)
{
$func = $this->funcList->Items[$this->funcList->ItemIndex];
$this->codeEdit->Text = $func($this->strEdit->Text);
}
function Form1Create($Sender)
{
$this->funcList->SetItemIndex(0);
}
function reBtnClick($Sender)
{
if($this->codeEdit->Text) {
$this->strEdit->Text = $this->codeEdit->Text;
$this->codeEdit->Text = '';
}
}
} //end __PPFORM__
?>
Post my ugly applet interface
Disadvantages:
The startup speed is a bit slow and the application cannot be released directly. Looking at the forum, people say that they are already planning to release an SDK to meet this demand