Results 1 to 1 of 1
-
25th Aug 2010, 10:14 AM #1OPMemberWebsite's:
litewarez.net litewarez.com triniwarez.comUsing the __autoload feature in PHP
The auto load function allowed you to do that little bit extra to prevent file inclusion errors.
and auto load function is executed under the following conditions
- A file that you attempted to include does not exists
- a class you attempt to initiate does not exists in global scope.
that might not seem helpfull but lets take a look at this example:
Directory Structure
Code:index.php -- includes / ---- database.class.php ---- profile.class.php
Now the traditional method of loading one of those files is like so:
PHP Code:include 'includes/database.class.php';
$Database = new Database();
now lets take a look at a little autoloader function.
PHP Code:function __autoload($class)
{
$file = 'includes/' . strtolower($class) . '.class.php';
if(file_exists($file))
{
require_once $file;
}
}
PHP Code:include 'functions/autoload.php'; //Load the above function.
$Database = new Database();
$Profile = new Profile();
heres an example of Litewarez
Filename: includes/litewarez.class.php
Classname: class Litewarez{
So you can now use AutoLoaders
Happy Codinglitewarez Reviewed by litewarez on . Using the __autoload feature in PHP The auto load function allowed you to do that little bit extra to prevent file inclusion errors. and auto load function is executed under the following conditions A file that you attempted to include does not exists a class you attempt to initiate does not exists in global scope. that might not seem helpfull but lets take a look at this example: Rating: 5Join Litewarez.net today and become apart of the community.
Unique | Clean | Advanced (All with you in mind)
Downloads | Webmasters
Notifications,Forum,Chat,Community all at Litewarez Webmasters
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
IPT feature wants to know
By F A S T E R in forum Webmaster DiscussionReplies: 5Last Post: 10th Jan 2012, 06:52 AM -
How to disable like feature in posts....?
By saini in forum vBulletinReplies: 1Last Post: 23rd Oct 2011, 01:21 PM -
Most important feature
By SplitIce in forum Polling PlazaReplies: 15Last Post: 24th Nov 2010, 10:47 AM -
Test this new feature for me please.
By Nemesis in forum Webmaster DiscussionReplies: 0Last Post: 30th Mar 2010, 06:02 PM
themaRegister - register to forums...
Version 3.54 released. Open older version (or...