Jump to content

Can you include libraroes?


reportingsjr

Recommended Posts

Well, I wanted to be able to learn how to use and use the gd library (creates images on the page) but my host doesnt have it. Is there a way I can like include it on whatever page I want to use it? Or will I have to go through and edit my php.ini files?

Link to comment
Share on other sites

I don't think that you can programmatically change which extensions get loaded, you will need to edit the php.ini file to load that extension. You can use extension_loaded or get_loaded_extensions to determine if it is loaded, but you can't programmatically load it.

Link to comment
Share on other sites

So I couldnt just like find the gd library with all the functions defined it in then include it? How would I go about adding it to my site. or will the host have to do that?

Link to comment
Share on other sites

The host will have to do it, you can't arbitrarily link in anything you want with PHP. The host will have to enable support for you. The GD library, and all other extensions, do not get loaded on-demand, all extensions get loaded when PHP starts up. By the time your script gets executed, all extensions have already been loaded and all built-in functions have already been defined, it's not something you can do after the fact.

Link to comment
Share on other sites

I see :blink:. Ill have to talk to him about it..My host is my brother in law :) lucky me. He gave me a free domain and free hosting with around 300mb of space and lots of other features. I wouldnt be able to do this otherwise because im only 13 :).Oh yeah, he said that he can do cron jobs on the server and he can give me shell access he just needs to change my admin cp to have it on there. Ill email him. He has bad memory :)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...