Tagged Questions
The autoload tag has no wiki summary.
58
votes
7answers
20k views
Best way to load module/class from lib folder in Rails 3?
Since the latest Rails 3 release is not auto-loading modules and classes from lib anymore,
what would be the best way to load them?
From github:
A few changes were done in this commit:
Do not ...
14
votes
1answer
117 views
multiple spl_autoload_register
what is/are the benefit(s) of having multiple spl_autoload_register
example:
spl_autoload_register('autoload_systems');
spl_autoload_register('autoload_thirdparties');
...
11
votes
5answers
313 views
How unique is PHP's __autoload()?
PHP's __autoload() (documentation) is pretty interesting to me. Here's how it works:
You try to use a class, like new Toast_Mitten()(footnote1)
The class hasn't been loaded into memory. PHP pulls ...
10
votes
2answers
252 views
Autoloading classes in Ruby without its `autoload`
I love the autoload functionality of Ruby; however, it's going away in future versions of Ruby since it was never thread-safe.
So right now I would like to pretend it's already gone and write my code ...
10
votes
3answers
879 views
Is autoload thread-safe in Ruby 1.9?
It seems to me that the Ruby community has been freaking out a little about autoload since this famous thread, discouraging its use for thread safety reasons.
Does anyone know if this is no longer ...
10
votes
1answer
3k views
Autoload with namespaces in PHP 5.3?
How do you use _autoload in PHP 5.3 with namespaces? I have a main autoload function in a namespace separate from my script. I'm also calling a class with a different namespace. (It's not surprising, ...
10
votes
4answers
4k views
Efficient PHP auto-loading and naming strategies
Like most web developers these days, I'm thoroughly enjoying the benefits of solid MVC architecture for web apps and sites. When doing MVC with PHP, autoloading obviously comes in extremely handy.
...
9
votes
2answers
2k views
Do PHP opcode cache work with __autoload?
Sorry if this is basic, I am trying to learn as much as I can about OO in PHP and I am slowly learning how to use it (very limited).
So I am wanting to know if __autoload() has any affect on PHP ...
8
votes
1answer
1k views
PHP5 Frameworks: Autoloading and Opcode Caching
A number of frameworks utilize spl_autoload_register() for dynamically loading classes (i.e. controllers and models). There are a couple of posts on the issue of autoloading and opcode caching. One ...
7
votes
3answers
164 views
Intercept nonexistent methods call in Perl
I try to intercept nonexistent methods call in some subclass.
Yes, I know about AUTOLOAD,
but (for methods) it try to call parent::method first, then UNIVERSAL::method and only then ::AUTOLOAD.
But I ...
7
votes
3answers
453 views
emacs23 / elisp: how to properly autoload this library?
I am upgrading to emacs23. I find that my emacs.el loads much more slowly.
It's my own fault really... I have a lot of stuff in there.
So I am also trying to autoload everything possible that is ...
7
votes
10answers
935 views
Best solution for __autoload
As our PHP5 OO application grew (in both size and traffic), we decided to revisit the __autoload() strategy.
We always name the file by the class definition it contains, so class Customer would be ...
6
votes
3answers
2k views
Rails3 not reloading code in lib while in development mode
THE SITUATION:
I have code in lib/foo/bar.rb with a simple method defined as such:
module Foo
class Bar
def test
"FooBar"
end
end
end
In my helper, FooBarHelper, I have:
require ...
5
votes
2answers
1k views
PHP __autoload performance
I have a script that uses autoload to load classes that arn't found. I don't deliberately include file though i can but i would like the autoload function to include the required files , because the ...
5
votes
6answers
3k views
autoload and multiple directories
I've just been looking at php's autoload() function. Seems a nice idea, but I'm not sure how it handles multiple directories. My current development basically has a library directory structure ...
5
votes
5answers
7k views
ExtJS: autoLoad does not work in IE
Using ExtJS 2.2.1, I've got a container element which is supposed to load a piece of HTML from the server using:
autoLoad: { url: 'someurl' }
This works fine in Firefox, but for IE7 this results in ...
5
votes
2answers
2k views
Autoload in Python
In the past I've used perl's AUTOLOAD facility for implementing lazy loading of symbols into a namespace, and wanted the same functionality in python.
Traditionally the closest you appear to be able ...
4
votes
2answers
91 views
Using MySQLi extending class in errorhandler with autoloader
I have encountered an issue with using a combination of the following in PHP:
A custom classloader "ClassLoader", implemented as a singleton and registered with spl_autoload_register, which does a ...
4
votes
3answers
208 views
How to manage dependency autoloading
When building a library I always provide an Autoloader class that handles autoloading for the library. The autoloader is registered like this:
require_once ...
4
votes
1answer
383 views
php spl_autoload_register vs __autoload?
hello is there any diffrence useing this excepts that we can use our own name auto load? is there any performance difference? how do they internally work?
between
function ...
4
votes
1answer
132 views
How to detect if a class does not exist without triggering an error
I have run into an interesting dilema. In a DataMapper class, I am generating a class name to be used for returned rows from a database.
The thing is, all of my classes are autoloaded, and can come ...
4
votes
1answer
228 views
PHP 5.3 Use and Symfony Forms
Im trying to include some Symfony form components into my project.
use Symfony\Component\Form\Form;
use Symfony\Component\Form\FormInterface;
If I do this I get :
Fatal error: Class ...
4
votes
1answer
342 views
Autoloading Symfony classes in Zend_Framework
How to autoload Symfony classes in the app based on Zend Framework? Can I push some kind of Symfony autoloader to the Zend's Autoloader?
I need to use some of the components like output escaper or ...
4
votes
3answers
145 views
Any way to avoid loading unused classes for a non-oo app?
My application uses a 'central' page controller that grabs a bunch of files (I hesitate to say libraries) each containing a few related classes, using require_once, before fetching the request. As in:
...
4
votes
2answers
562 views
Question about a simple PHP Autoloader
I was just learning aboutt PHP namespaces and starting to create a simple autoload function. What O did was:
function __autoload($name) {
echo $name . "<br />";
require_once $name . ".php";
...
4
votes
2answers
760 views
PHP autoloading: Preventing 'cannot redeclare <class>' in all constellations?
Question
Is there a way I can make PHP ignore re-declarations of classes rather than barf up a FATAL ERROR? Or at least throw an exception? (I could easily catch it then and proceed (as well a log ...
4
votes
6answers
1k views
Replacement for PHP's __autoload function?
I have read about dynamically loading your class files when needed in a function like this:
function __autoload($className)
{
include("classes/$className.class.php");
}
$obj = new DB();
Which ...
4
votes
1answer
217 views
Is it possible to autoload a file based on the namespace in PHP?
Would what mentioned in the title be possible? Python module style that is. See this example for what I exactly mean.
index.php
<?php
use Hello\World;
World::greet();
Hello/World.php
<?php
...
4
votes
1answer
271 views
php require and autoload
I use __autoload to load classes, and I keep getting errors that no class is found but file get's loaded ok.
Then if I change something in a file, just something like add a new line and save it, ...
4
votes
1answer
197 views
How can you track the full sequence & order of 'require's in a Ruby app as a tree?
How can you display the hierarchy of 'require's that take place in a Ruby app?
Some files require files which require additional files.
However, by running an application in debug mode you only ...
4
votes
2answers
2k views
Why are autoload, load_all! and require all used in active_support.rb?
I was looking at active_support.rb to try to understand the load process it uses. It uses three loading methods: load_all!, autoload and require.
Why use three different ways of loading in the same ...
3
votes
1answer
89 views
With 'autoload' being deprecated, what should devs use in the meantime?
Having read a couple weeks ago that autoload is officially deprecated, Matz discourages use of it. What is to replace it? What should developers do instead? I used it in some command-line gems to ...
3
votes
3answers
99 views
Creating object from variable using Namespaces and Autoload in PHP
EDIT with my own comment afterwards
I think the problem is that when PHP is parsing the file to "compile", first it translates class names to their fully qualified
name. So Index will be ...
3
votes
2answers
120 views
autoload and namespaces
I've been working with PHP for a long time, but am now starting to experiment with newer language features such as namespaces. I have a question regarding autoloading that I haven't been able to find ...
3
votes
1answer
129 views
Best way to load php classes in EC2 - InstanceStore, EBS or S3?
What is the best way to load PHP classes in EC2 in the following scenario (#s are for illustrative purposes)?
-> 100 EC2 instances running apache and APC
-> 100 php classes loaded per request (via ...
3
votes
2answers
266 views
__autoload not respected when testing with PHPUnit
How can I make PHPUnit respect __autoload functions?
For example, I have these three files:
loader.php
function __autoload($name)
{
echo "foo\n";
require_once("$name.php");
}
test.php
...
3
votes
1answer
261 views
Using PHP namespaces in a Zend Framework (v1) application
Is it possible in the current stable version of the Zend Framework (1.11), to work with application classes using PHP namespaces?
Application\Form\Abc instead of Application_Form_Abc
...
3
votes
3answers
296 views
How to add autoload-function to CodeIgniter?
I would like to be able to use OOP and create new objects in my controllers in CodeIgniter. So I need to use an autoload-function:
function __autoload( $classname )
{
...
3
votes
1answer
96 views
PHP autloading failing in __sleep() magic method
I'm having issues with autoloading classes in PHP's magic __sleep() method. Autoloading doesn't take place, so the class cannot be found. In an attempt to debug this I tried calling ...
3
votes
1answer
322 views
Instantiating class by string using PHP 5.3 namespaces
I can't get around an issue instantiating a new class by using a string variable and PHP 5.3. namespaces. For example, this works;
$class = 'Reflection';
$object = new $class();
However, this does ...
3
votes
4answers
691 views
__autoload disaster - conflicts with Joomla
I have just changed all my code to use __autoload to find that it conflicts with the joomla autoloader. I integrate my app with joomla in some cases to register users etc.
I found ...
3
votes
2answers
2k views
Kohana 3 Auto loading Models
I'm attempting to use a Model but I get a fatal error so I assume it doesn't autoload properly.
ErrorException [ Fatal Error ]: Class
'Properties_Model' not found
The offending controller ...
3
votes
3answers
6k views
Zend Framework: Autoloading a Class Library
I've got a class library in defined here .../projectname/library/Me/Myclass.php defined as follows:
<?php
class Me_Myclass{
}
?>
I've got the following bootstrap:
<?php
/**
* ...
3
votes
4answers
859 views
Is it bad to use autoloading in PHP?
From php.net...
In PHP 5, this is no longer necessary. You may define an __autoload function which is automatically called in case you are trying to use a class/interface which hasn't been defined ...
3
votes
1answer
761 views
Can I autoload function files without classes in PHP?
My site is pretty large and I do not use PHP Classes, I do not understand OO good enough yet to re-write my site to use them however I would really like to use the
__autoload($class_name) feature that ...
3
votes
6answers
1k views
Import package or autoloading for PHP?
What solution would you recommend for including files in a PHP project?
There aren't manual calls of require/include functions - everything loads through autoload functions
Package importing, when ...
3
votes
8answers
1k views
How to handle including needed classes in PHP
I'm wondering what the best practice is for handling the problem with having to "include" so many files in my PHP scripts in order to ensure that all the classes I need to use are accessible to my ...
2
votes
1answer
69 views
PHP spl_autoload_register() flavors advantages/disadvantages
The spl_autoload_register() function can be used with 3 types of callbacks: functions, static methods and regular methods. Are there any advantages/disadvantages for these 3 types compared to each ...
2
votes
1answer
48 views
Testing a method provided by autoload with Test::More
I have a factory class which provides a bunch of similar methods by using autoload. For a longer list of different object types it can do things like
Factory->objects();
Factory->object(23);
...
2
votes
2answers
65 views
Organizing / using reusable code libraries in PHP [closed]
My goal is to write some reusable (OO) code for communicating with an external API, but as I'm not well versed in this kind of stuff in PHP, I'm not sure what is the best way to organize and load my ...