Home >Backend Development >PHP Tutorial >ppform is really a good tool - php desktop program helper_PHP tutorial

ppform is really a good tool - php desktop program helper_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 17:32:481192browse

Recently I have used ppform, a small tool. The magic of this thing is that you can use php(as the current mainstream development language)to quickly develop a small tool like Delphi, such as The following is a small thing that I am using that can directly call the php (as the current mainstream development language) function. It only uses a small amount of code to complete the entire function, as follows:

PLAIN TEXTphp(as the current mainstream development language):

(as the current mainstream development language) require_once("ppform.php (as the current mainstream development language)"); ?>
(as the current mainstream development language)

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;
🎜> }

} //end __PPFORM__

?>

Paste my ugly applet interface

ppform is really a good tool - php desktop program helper_PHP tutorialDisadvantages:

The startup speed is a bit slow

You cannot directly publish the application. Looking at the forum, people said that they are already planning to release an SDK to meet this demand


http:/ /www.ooso.net/index.php

(as the current mainstream development language)

/archives/181

http://www.bkjia.com/PHPjc/508672.html

truehttp: //www.bkjia.com/PHPjc/508672.htmlTechArticleRecently I have used the ppform tool. The magic of this thing is that it can be used with php (as Current mainstream development languages) quickly develop a small tool like Delphi, such as the following...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn