Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

DZone.com:
How to Build PHP 5.4 Applications with Visual Studio
Jun 29, 2012 @ 13:26:08

On Dzone.com today there's a new post showing you how to build PHP applications with Visual Studio based on PHP project templates.

Developing web applications with PHP is cool, especially when you have the right development tools and even with more features added in PHP 5.4. But each time I left the comfort of Intellisense in Visual Studio to develop PHP applications using Zend or Netbeans for PHP, I was not always satisfied with those IDEs' code complete features. Thus, I decided to search for any available plugin that will provide this feature in Visual Studio.

The plugin used is on from Jcx.Software Corp. It adds in the PHP templates and Intellisense support for PHP code completion. He also shows how to set up an IIS server to work with it to make it easier to test your application.

tagged: application development visualstudio template intellisense iis

Link:

SitePoint Server-Side Coding:
A Beginner's Guide to Silverlight with PHP
Apr 29, 2010 @ 15:09:09

On SitePoint.com in the Server-side Coding blog there's a new tutorial that looks to help developers just wanting to get their feet wet with Silverlight to get started. Jordan Knight shows you how to build a simple applications using a combination of C# frontend and a PHP-powered backend.

You might think that it would be more difficult to use Silverlight in a PHP application, but it’s actually quite simple; you can leverage JSON, XML, or any number of communication technologies to pass data from Silverlight to the PHP backend. However, in this article, we’re choosing to go with a SOAP Web Service. I’ll first show you how to start developing with Silverlight, then cover how you set up the web service in PHP, and finally demonstrate how to access the service from your Silverlight application.

You'll also need to have the Silverlight Tools and Visual Studio installed as well to be able to follow along. He walks you through the creation of a sample project, setting up the basic Silverlight app, making a WSDL for the SOAP service and making the sample web service with PHP's built-in SOAP functionality. With that in place, he shows how to consume the service with the C# frontend and how to send a sample message back out to the application.

tagged: silverlight tutorial beginner visualstudio

Link:


Elizabeth Smith's Blog:
Code Coverage For PHP Windows Extensions
Oct 10, 2008 @ 21:04:27

Elizabeth Smith has a new blog post today showing the steps you'll need to get code coverage testing up and running on your Windows extensions.

She spells out a seven step process that involves Microsoft Visual Studio (with Code Coverage support), a properly compiled PHP instance and a little familiarity with the Windows command line to get things working.

As you can see, this could be a nice automated task. Figuring out this path to madness took a lot of googling to find some information about running code coverage from the command line.

She also includes a tip on getting the .NET parts to play nice with Visual Studio.

tagged: windows extension codecoverage visualstudio

Link:

DeveloperTutorials.com:
PHP 6 now with .net: Visual Studio integration available already
Apr 01, 2008 @ 19:57:08

On the Developer Tutorials site, there's an article talking about the integration that can be made with PHP6 and .NET Visual Studio:

PHP, .net and Silverlight will be integrated out of the box, along with Visual Studio 2008. The project has long been in the works, but our sources have informed us of an impending announcement that PHP 6 will ship with .net.

The glue between them is a part of the phlanger project.

tagged: php6 net microsoft visualstudio integrate

Link:

Elizabeth Smith's Blog:
The Great Compile Project
Mar 10, 2008 @ 15:29:00

Elizabeth Smith has set out on something she calls the Great Compile Project - her effort to get all dependencies for PHP and PECL compiled on (at the least) Visual Studio 2005 transparently and provided openly.

Anyone crazy enough to help out is more than welcome. I'm currently working on the GTK dependency stack, which will hit quite a few PHP dependencies and PECL extension dependencies in the process. And yes I'd love to submit my hacks/fixes upstream, if someone could find me some information (where do you send libiconv patches?)

Her post mentions some of the things she's already been working on to help further the cause - compiling various Open Source libraries, figuring out issues surrounding MiniGW and some examples of more complex dependency issues she's come across.

tagged: compile project windows visualstudio pecl dependency

Link:

Elizabeth Smith's Blog:
Hey, Code Coverage on Windows!
Jan 29, 2008 @ 15:35:00

Elizabeth Smith has posted about a new toy she received from the folks at Microsoft that adds in a missing piece of development functionality on Windows - code coverage and testing.

So this evening I managed to get PHPT running my tests (they're just basic .phpt tests but run-tests is..well flakey is a nice description some days) for my winapi php extension wrapped inside a "generic test" for Visual Studio. [...] So what did all this accomplish? I now can run my phpt tests through visual studio and collect code coverage on what they’re testing. Like GCOV, only for windows.

She's also included a screenshot of what the interface and results of the testing look like in the latest Visual Studio tool.

tagged: visualstudio codecoverage phpt unittest msdn

Link:

JSLabs Blog:
How to compile php scripts in ASP.net
Jun 21, 2007 @ 13:07:00

On the JSLabs blog today, there's a quick tutorial talking about how to transfer PHP scripts (without much altering, depending on the functionality used) over to be compiled into an ASP.net application. The real key is in the Phlanger software.

Phalanger is a new PHP implementation introducing the PHP language into the family of compiled .NET languages. It provides PHP applications an execution environment that is fast and extremely compatible with the vast array of existing PHP code.

Phlanger allows you to compiles PHP to the MSIL (Microsoft Intermediate Language), use any .NET object in a PHP application and integrates well with Visual Studio.

tagged: compile aspnet phlanger visualstudio microsoft compile aspnet phlanger visualstudio microsoft

Link:

JSLabs Blog:
How to compile php scripts in ASP.net
Jun 21, 2007 @ 13:07:00

On the JSLabs blog today, there's a quick tutorial talking about how to transfer PHP scripts (without much altering, depending on the functionality used) over to be compiled into an ASP.net application. The real key is in the Phlanger software.

Phalanger is a new PHP implementation introducing the PHP language into the family of compiled .NET languages. It provides PHP applications an execution environment that is fast and extremely compatible with the vast array of existing PHP code.

Phlanger allows you to compiles PHP to the MSIL (Microsoft Intermediate Language), use any .NET object in a PHP application and integrates well with Visual Studio.

tagged: compile aspnet phlanger visualstudio microsoft compile aspnet phlanger visualstudio microsoft

Link:

Community News:
VS.PHP v2.3 for Visual Studio Released
Jun 15, 2007 @ 16:28:00

Juan Rivera submitted some information to us recently about the release of the latest version of VS.PHP, the PHP IDE for Visual Studio, now in version 2.3.

Key features are:
  • Support for remote server projects. Edit remote files like they were local
  • Support for Windows Vista, Visual Studio SP1
  • Support for Ftp over SSL

VS.Php 2.3 comes as a plug-in for Visual Studio 2005 or as a standalone edition.

You can get complete information on this new update from the press release posted on the software's official website.

tagged: visualstudio release vsphp visualstudio release vsphp

Link:


Trending Topics: