need help: A question about using PHP 'module'

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ecoli01
Forum Newbie
Posts: 1
Joined: Fri Oct 16, 2009 2:55 pm

need help: A question about using PHP 'module'

Post by ecoli01 »

Dear friends,

We know that in perl programming, we can use modules (freely download from CPan), just like classes in C, by simply using those modules, users can do relatively complicate jobs.

I am wondering are there any free modules that can be used directly in PHP scripts? If so, where can I find them?

Thanks in advance.
User avatar
requinix
Spammer :|
Posts: 6617
Joined: Wed Oct 15, 2008 2:35 am
Location: WA, USA

Re: need help: A question about using PHP 'module'

Post by requinix »

PHP already has a bunch of stuff built-in. The stuff that isn't is available through extensions (which come with PHP or the PECL). Even more stuff is available via PEAR.

And if somehow you still can't find it, Google is your friend.
Post Reply