Programming Theory
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Codewalkers ForumsOther TechnologiesProgramming Theory

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Codewalkers Forums Sponsor:
  #1  
Old June 18th, 2009, 01:57 PM
theflea912 theflea912 is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Apr 2007
Posts: 120 theflea912 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 h 3 m 49 sec
Reputation Power: 3
Send a message via AIM to theflea912 Send a message via MSN to theflea912 Send a message via Google Talk to theflea912
Include and Require

How many includes/requires should I limit myself too? I know that load time increases for each included file, but is there a general accepted rule about how many?

Reply With Quote
  #2  
Old June 18th, 2009, 09:56 PM
IAmALlama IAmALlama is offline
Me
Click here for more information. Click here for more information
 
Join Date: Apr 2007
Location: San Diego, CA
Posts: 2,069 IAmALlama User rank is Private First Class (20 - 50 Reputation Level)IAmALlama User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 1 Week 6 Days 7 h 47 m 10 sec
Reputation Power: 5
there is not any rule when it comes to includes. just look at some of the larger/popular php programs, some probably have a hundred files being included and they can run in just a few milli-seconds.

Reply With Quote
  #3  
Old July 1st, 2009, 06:26 AM
Winters Winters is offline
Contributing User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Jun 2009
Posts: 65 Winters User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 23 h 25 m 21 sec
Reputation Power: 1
Limit yourself to the amount required. Think about your application design and flow. What is re-usable? Does that section of code really need to be an included file or will it only be used once?

Try to plan out your application before you start coding it in earnest.

Reply With Quote
  #4  
Old July 8th, 2009, 12:18 PM
cromano cromano is offline
Registered User
Codewalkers Newbie (0 - 499 posts)
 
Join Date: Jul 2009
Posts: 2 cromano User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 18 m 26 sec
Reputation Power: 0
As a general rule, includes and requires are your friends. There's no significant overhead, and if you plan out how you're going to use them, you can avoid reusing code in your apps. Here's the strategy I use:
You can require just one common file at the top of each page:

PHP Code:
<?php require_once("common.inc.php");?>


Then inside "common.inc.php" you can use PHP's __autoload function:

PHP Code:
<?php
function __autoload($name_of_class){
require_once(
$name_of_class.".class.php");
}
?>


This will automatically load classes as you call them. It's a good way to have the code at your fingertips, without including code that you're not using.

Then in your scripts, if you say:

PHP Code:
<?php
$customer 
= new Customer;
?>


You will automatically include a separate page with code for dealing with customers.

Reply With Quote
Reply

Viewing: Codewalkers ForumsOther TechnologiesProgramming Theory > Include and Require


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump




 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

Request Your Free Technology Downloads!
 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

Request Your Free Technology Downloads!
 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

Request Your Free Technology Downloads!
 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

Request Your Free Technology Downloads!
 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

Request Your Free Technology Downloads!
 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 




© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 7 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek