Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Am a web developer that uses PHP(but with no idea in PHP OOP) for dynamic pages, but I would like to go into application development for desktop application.

My first question is that can PHP OOP be used to write desktop application? (would make my transition easier).

share|improve this question
1  
Try looking at Java, .NET or C++ if you are wanting to write desktop applications for a Windows environment. – Kane Jul 28 '11 at 13:42
Take a look at PHP Desktop, it lets you create desktop applications in a similar way you build php websites, for this to happen it embeds php built-in webserver, IE engine and SQLite extension among others. – Czarek Tomczak Jan 13 at 19:25

closed as not constructive by Andrew, Tim Post Jul 28 '11 at 17:45

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

It's possible to write desktop applications in PHP (as evidenced by the existence of a GTK port) but I doubt it'd be a pleasant experience. Seconding Kane, you probably want to look at C# (if you're only targeting Windows,) Java or Python (if you want to go cross platform.) Java and C# will have a familiar syntax, being part of the C-like family like PHP, whereas Python may have a slightly less familiar syntax but also has a type system closer to how PHP works. All of them have good GUI toolkit bindings.

share|improve this answer
Thanks Kane and valderman, i think i have a clue now. I guess i will be going for C#. And if i may ask, what is OOP used for? – phlex Jul 28 '11 at 15:34
1  
OOP is an abstraction mechanism that supposedly allows you to reason about your code on a higher level. The main idea is to organize code and data into self-contained objects, which then communicate with each other through well defined interfaces. This allows for a larger degree of compartmentalization and smaller independent units of code and/or data than you're usually working with in a procedural program, which generally leads to shorter development times and fewer bugs. – valderman Jul 29 '11 at 12:44
thanks. I got it now. Really grateful – phlex Aug 1 '11 at 19:02

Not the answer you're looking for? Browse other questions tagged or ask your own question.