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.

I know a lot of libraries like GD Library, Google Charts Library, and the rest. But this question often comes back to me.

What really is a PHP Library. Also, how can I build it?

I also noticed that classes and functions are the major backbone thus making development easier. I want to build a library for a Games Web App, how do I start....

Please I need code examples.

share|improve this question
If you need an example. Download zend framework and look into folder library. – John Jan 3 at 0:12
Thats too big for a newbie... – Emmanuel Harrison Jan 3 at 5:01

closed as not constructive by dev-null-dweller, Lizard, Dagon, Jocelyn, Ram kiran Jan 3 at 3:12

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.

3 Answers

up vote 1 down vote accepted

Like all computing languages, PHP offers their own library API for you to use. An example of it would be cURL. You can make your own unofficial library for others to use, one that is pretty well know is used for web scraping: PHP Simple HTML DOM Parser. In PHP, libraries usually offer a object oriented approach or procedural way as a standard way. All the end-user needs to do is to import the script's main or (require/import) and would be able to use it.

Hope it's okay for a short answer, let me know if you really need me to paste snippet examples or want me to expand. You can inspect the code if you're really that much curious, but it's usually done with classes/namespaces for easy documentation and clean way of coding (and not just utility functions).

share|improve this answer
3  
The "opposite" of "object-oriented" is "procedural", not "methodological" ;) – Kolink Jan 3 at 0:19
Yes, thank you, I was looking for that term! – Hamed Al-Khabaz Jan 3 at 0:38
Thank you very much. I would like a litte example though. – Emmanuel Harrison Jan 3 at 5:02

Some best known PHP libraries are Zend Framework, CedeIgniter, and Symfony

For example it has Mail class where you tell the port, protocol, and host name and bam, no other thing to congigure. And all those classes use some of other classes when needed.

You want to write a captcha. No need to write it from scratch. Just use Captcha class in Zend Framework. Just, you tell fon't size, font style, word length, and noiseness. That's it. You have a working captcha.

share|improve this answer
I know those... – Emmanuel Harrison Jan 3 at 5:04

Anything re-usable can be termed as a Library in any language. So you need to figure out what is common in your "Games Web App". Develop classes or functions in order to perform these tasks. What is common in a library is an API, or a way of interacting with the library. You need to come up with few examples of how someone would use the library to develop a game for example.

share|improve this answer
"What is common in a library is an API, or a way of interacting with the library." -Thank you also. This line helped a lot. – Emmanuel Harrison Jan 3 at 5:03

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