2012年8月8日 星期三

VS環境下好用的PHP開發工具VS.PHP



官方網站:PHP IDE for Visual Studio | Jcx.Software Corp.

簡  介:
VS.Php is a PHP IDE (integrated development environment) based on Visual Studio IDE. With VS.Php you can design, develop, debug and deploy PHP applications within the Visual Studio IDE. VS.Php key features are around providing rich PHP editor as well as Smarty editing capabilities. Also is the ability to debug PHP scripts locally as well as remotely.

簡單範例:
Click me!!

範例程式:
<?php
class MyClass
{
    public function hello() {
        for ($i = 0; $i < 10; $i++)
        {
            echo "Hello<br />";
        }
    }
}
$hello = new MyClass();
$hello->hello();
?>

沒有留言:

張貼留言