Tagged Questions
The require-once tag has no wiki summary.
39
votes
12answers
7k views
Why is require_once so bad to use?
Everything I read about better php coding practices keeps saying don't use require_once because of speed.
Why is this?
What is the proper/better way to do the same thing as require_once
(if it ...
7
votes
4answers
428 views
PHP - is it better to use require_once('filename.php') or require_once 'filename.php';
Is this just a stylistic difference, or does using require_once('filename.php') vs require_once 'filename.php' have actual load/efficiency differences?
5
votes
1answer
202 views
Foolishness Check: PHP Class finds Class file but not Class in the file
I'm at a loss here. I've defined an abstract superclass in one file and a subclass in another. I have required the super-classes file and the stack trace reports to find an include it. However, it ...
5
votes
3answers
990 views
What is the scope of require_once in PHP?
Simple question: Is the scope of require_once global?
For example:
<?PHP
require_once('baz.php');
// do some stuff
foo ($bar);
function foo($bar) {
require_once('baz.php');
// do ...
4
votes
1answer
34 views
using a constant in require_once
Hullo. I'm using the following to define root while in development:
define('LOCAL_URL', 'http://localhost/~xampp/Mysite');
define('REMOTE_URL', 'http://mysite.com');
define('DEV_VERSION', true);
...
4
votes
3answers
185 views
Is it worth using require_once() for memory savings?
I'd like to check if my understanding's correct about require_once(). I have a bunch of functions in file foo.php. Let's say 7/8 out of them are always used, and one of them's rather rare and rather ...
4
votes
4answers
642 views
Include, require & require_once
Today I've tried to include file that returns object. I always use require_once, however now I've noticed weird behavior of it.
File main.php
$lang = false;
$lang->name = "eng";
$lang->author ...
4
votes
4answers
1k views
What is the best way to include PHP libraries when using static factory pattern?
I have several static factory patterns in my PHP library. However, memory footprint is getting out of hand and we want to reduce the number of files required during execution time. Here is an example ...
3
votes
1answer
195 views
What are the Advantages and Disadvantages of conditionally including a class file with in a method of another class in PHP?
In this question about including all the classes in a directory for an interpreter that needs all of them, it was suggested that a better way to handle the problem would be to conditionally include ...
3
votes
6answers
448 views
How can I speed up a 1800-line PHP include? It's slowing my pageload down to 10sec/view
I designed my code to put all important functions in a single PHP file that's now 1800 lines long.
I call it in other PHP files--AJAX processors, for example--with a simple ...
3
votes
4answers
1k views
PHP include once
Is it more efficient to use PHP's include_once or require_once instead of using c-like include with a header guard?
i.e,
include_once 'init.php';
VERSUS
include 'init.php';
//contents of ...
3
votes
4answers
7k views
php require_once path confusion
I was writing an web app in php, when i encountered a strange situation. I wish to clear my confusion. To illustrate my problem, consider a web app of this structure:
/
index.php
f1/
...
2
votes
2answers
87 views
PHP - facing problems with require_once() in my site
There's a site I'm developing, and I don't really understand the problem that is occurring...
There's a link inside a table in the Home page. When I click on it, It is supposed to provide some GET ...
2
votes
3answers
113 views
Why do people say require_once is slower than require? [closed]
Possible Duplicate:
Why is require_once so bad to use?
When PHP is including a file I assume it stores the file name inside a array.
Then, when including another file, it will check that ...
2
votes
2answers
67 views
PHP Method Disappears?
I am including one PHP script into another using PHP's require_once() method. This script contains a class, TemplateAdmin, which instantiates itself right after the script, like this:
class ...
2
votes
1answer
51 views
Process multiple scripts based on variables from Sql
I have an Sql database setup where the e-mail address is compared. If the e-mail address matches then I pull out the Company name, and Name associated with that e-maill address.
Ex.
...
2
votes
4answers
249 views
Does PHP require, require_once, or include automatically read the file at page load?
I have several pages which use the include or require language constructs within PHP. Many of these lie within IF, ELSE statements.
I do realize that a page will not load at all if a require'd file ...
2
votes
1answer
510 views
Importing PHP code in Joomla Component development
Can't figure out how to import php files into my joomla component- all of these fail:
require_once('code.php');
require_once(dirname(FILE).DS.'code.php');
require_once(JPATH_COMPONENT.DS.'code.php' ...
2
votes
2answers
229 views
what are the main differences between require, require_once, include and include_once in PHP
What are the main differences between require, require_once, include and include_once in PHP?
2
votes
3answers
599 views
Use Require_once() to include database connection variables correctly
I'm a php newbie (but long time developer in other languages) and I'm trying some example db connections in "PHP, MySQL, & JavaScript". It shows an example file to include db connection variables ...
2
votes
3answers
247 views
Warning and Fatal error calling require_once()
I want to fetch div element from other website .
on which iam having my profile, i have tried using this code.
require_once('../simple_html_dom.php');
$html=file_get_html('http://www.example.com');
...
2
votes
4answers
223 views
Prevent PHP require_once from ever running
Debugging someone else's PHP code, I'd like to selectively override one of their classes. The class is included via:
require_once('classname.php');
But, that appears in various places in the ...
2
votes
2answers
416 views
PHP/HTML/CSS: IE acting weird when using require_once()
Now this is the most weird problem I've ever had in PHP.
All pages looks normal except one; when I first saw the problem I thought it was one of these common problems with IE and stylesheets (I've ...
1
vote
4answers
63 views
Is there a HTML variant of require_once?
In HTML is there such a line of code that will do the same thing as PHP's require_once? I'm just curious because there are some lines of codes that I want to duplicate through multiples sheets without ...
1
vote
4answers
44 views
require_once to global scope within a function
It seems that if require_once is called within function, the included file doesn't extend the global variable scope. How to require_once a file to global scope from within a function?
What I'm trying ...
1
vote
2answers
37 views
how to include a php function in a class?
i have a class:
class Connect
{
public function auth()
{
... do something
}
}
and i have a function: getfile.php
<?php
require_once($GLOBALS['path']."connect.php");
?>
...
1
vote
2answers
58 views
php include file that has includes
I am working on a site and have been asked to include files that are sitting in a folder above my php scripts. Problem is those php files I have been asked to include, have includes in them. And thus ...
1
vote
1answer
69 views
“Fatal error: Cannot redeclare class” … but the class was not declared
(I'm using Joomla v1.5.15 and PHP 5.3.4)
I have tested the solutions found in this and others developer forums, but I still having the same error.
Requiring file => contratolocal.php
...
if ( ...
1
vote
2answers
71 views
How to auto include files with php not OOP?
I have different mods such as users, statistics and etc. If I click over users I get information about users, if I click statistics I get user statistics and so on. But I want to do that ...
1
vote
2answers
52 views
How to block to call function pages' outside required pages in PHP
I have a simple config page in my root directory. It's similar wp-config.php which in wordpress system. It's name is config.php (or anything). There are some mysql logins or general page functions in ...
1
vote
3answers
165 views
To require_once() or Not To require_once()
I am building a PHP CMS from the ground up. There is one super-core file within my system which I currently have automatically importing all other packages and classes that make up the core of the ...
1
vote
4answers
65 views
Question about including files with require_once
I have downloaded this API.
If you go to lib/Paypal/Profile/Handler/Array.php you will find this line:
require_once 'PayPal.php';
Since the PayPal.php file is in the lib/ folder, I expected ...
1
vote
1answer
200 views
Codeigniter controller in subfolder extends outside one
Is it possible a controller inside a subfolder, lets call it 'category', extends from a controller from the parent folder?
Example:
application_controller.php in the controller folder
category in ...
1
vote
2answers
127 views
PHP Suddenly stop searching for files in current directory
So I came up against something really strange today.
I've updated my PHP APC to the latest version and restarted apache. And then suddenly all scripts in apache starting complaining about not being ...
1
vote
3answers
72 views
Variables not holding
I have a .php script with 2 variables. $company and $user. During this .php script I require_once "/var/www/etc/etc/etc/etc/"
The .php file that I require_once, the variables from the previous .php ...
1
vote
4answers
182 views
Cron job won't process require_once
I have a Cron job setup to run every 5min. The Cron job is as follows:
php /var/www/vhosts/default/htdocs/Mail-test/index.php
At the end of my index.php script is the following:
$path = ...
1
vote
2answers
40 views
PHP namespaces does away with requiring files?
I was reading over some information on the PHP namespaces released in PHP 5.3, and from what I was seeing it looked like instead of requiring files to get the code you need all you had to do was use a ...
1
vote
3answers
279 views
PHP Require and Include GET
Hey I would like to require a file but also pass GET variables through the url, but when I write:
<?php
require_once("myfile.php?name=savagewood");
?>
I obviously get a fatal error. ...
1
vote
1answer
1k views
relative path in require_once doesn't work
I have the following structure
otsg
> class
> authentication.php
> database.php
> user.php
> include
> config.inc.php
> encryption.php
> include.php
...
1
vote
2answers
206 views
How do I require files in other directory branches?
When I try to use require or require_once, it will work fine if the file to be required is in the same subdirectory, but the moment it sees a file outside of their subdirectory, it generates a fatal ...
1
vote
2answers
92 views
Choosing different versions of Zend Framework to load using Zend_Loader and it's issues
Okay, so, I wanna be able to choose different versions of Zend Framework (and other frameworks) using Zend_Loader. Well, the code isn't tricky at all, but the problem is, there are so many ...
1
vote
2answers
144 views
PHP global, nested/inherited autoload
PHP 5.3.3-pl1-gentoo (cli) (built: Aug
17 2010 18:37:41)
Hi all, I use a simple autoloader in my project's main file (index.php):
require_once("./config.php");
require_once("./app.php");
...
1
vote
3answers
243 views
PHP require problem with “./”
I have a file index.php in root directory:
<?php
require_once "./include/common.php";
?>
and file common.php in include folder:
<?php
require_once "globalConfig.php";
?>
file ...
1
vote
5answers
204 views
require_once works without include path
I have file 1.php having a require_once for 2.php (both of them are in different folders). The issue I am having is that 1.php seems to magically include 2.php since the path for 2.php is not in ...
1
vote
3answers
210 views
require_once in php
I have a php file which has a require_once Statement (?) this file is then in included in 2 other php files, one php file is in a sub directory so the layout is like this ("file1" and "file2" include ...
1
vote
2answers
629 views
Optimizing PHP require_once's for low disk i/o?
Q1)
I'm designing a CMS (-who isn't!) but priority is being given to caching. Literally everything is cached. DB rows, DB id queries, Configuration data, processed data, compiled templates. Currently ...
1
vote
2answers
2k views
php require_once not working the way I want it to.. relative path issue
I'm having problems assigning a relative path to require_once. I'm sure it's something simple that I'm not seeing...
folder directory structure
level 1: site
level 2: include
level 2: class
so...
...
1
vote
1answer
120 views
PHP script unable to find a file when called by a flash program
I'm working on a program right now that calls the script mail.php located in /var/www/vhosts/company/httpdocs. mail.php is trying to execute require_once dirname(__FILE__).'/../pear/Mail.php' to do an ...
1
vote
2answers
524 views
PHP: Failed to open required file that exists
I am trying to include the Zend_Service_Amazon_S3 file by using
require_once 'Zend/Service/Amazon/S3.php';
I have also included in the include path the directory where the entire Zend library is ...
1
vote
3answers
1k views
strange php problem… require_once ignored on windows
strange problem with php on windows... my application loads a 'core' file that loads a settings file, registers autoloads, does initialization etc. at the top of the core file I have ...