views:

215

answers:

3

I'm trying to accomplish a task and turns out that the code I need is packaged as a PHP extension, which according to what I've been told means I have to have root access to install it (I'm on shared hosting so that's a bit of a problem.

I'll solve this problem later, but for now I'm trying to understand the difference between an extension, a library, and a class. Is it more of a packaging thing that could be overridden and repackaged a different way, or is there a valid architectural reasoning behind it?

Also when releasing your own code, what makes you decide to release as library vs. class vs. extension? or do you go with whichever sounds better?

thanks in advance.

P.S. If you must know which extension I'm talking about, it's Libpuzzle, but that's really beside the point, my question is more general.

+6  A: 

An extension is a pice of code programmed in C which will be included into the PHP core when PHP starts. Normally you have some more native functions available after including a extension. For example a zip functionality.

A class is a abstract pice of PHP code which solves common tasks. For example sending emails. You can find some common classes at pear.php.net.

A library is a collection of PHP classes wich solve more generic tasks for example buliding HTML forms AND sending emails. The Zend Framework is a framework which consists of many, many PHP classes.

Normally extension features can be programmed in PHP. For example the PEAR::Compat class. Often you will find the functionality you need as a PHP class available. I'm sure the stackoverflow readers will supply you with ideas where to find a specific PHP class.

powtac
So there's no way I can transform Libpuzzle to a more easily accessible format? :(
Chris
Maybe you can laod this extension by dl() http://us.php.net/manual/en/function.dl.php but normally shared hosters don't allow this.
powtac
+1  A: 

Extensions are low-level. Usually written in C/C++, and compiled into native-code shared libraries, they interact with the Zend Engine directly. It has pros and cons, main advantages being the speed and more control; and main disadvantages - they are harder to install, and require compilation (and that requires a compiler and PHP headers); it's not true they require root access though - you only need ability to use custom php.ini (or dl() function, but I see they deprecated it for some reason).

Libraries/classes are high-level and interpreted. If you don't know if you need to write extension, then you probably don't. About what classes are - read about OOP. A library is a reusable collection of code (most commonly in form of functions/classes).

PiotrLegnica
Thanks for the answer. I'll look into if I have access to custom php.ini
Chris
+1  A: 

Some libraries (including libpuzzle) also include a command-line tool. So if you're unable to use the PHP library due to your shared hosting environment, maybe you can compile the command-line tool. Then you can run it from PHP using something like exec. It will be slower and require more memory than a library, but it might get the job done. Of course, many hosts also have restrictions on commands like exec, so this might not work either.

JW
Thanks for the idea, will look more into it.
Chris