1
vote
0answers
25 views
Symfony Fails opening my sfDoctrineDatabase.class.php
My problem is very simple, yet I feel lost while looking at it ...
I am currently working on a Symfony project located on an SVN repository.
It has worked well all day but suddenly it crashed...
Now …
0
votes
1answer
62 views
Zend Models not being found
I'm having a strange problem with Zend. I have an application that works great on localhost, and can access it from outside using my IP address as well. When I move it to our staging server, it …
1
vote
1answer
79 views
SQLAlchemy declarative concrete autoloaded table inheritance
I've an already existing database and want to access it using SQLAlchemy. Because, the database structure's managed by another piece of code (Django ORM, actually) and I don't want to repeat myself, …
0
votes
2answers
98 views
from camel case to underscore case conversion with php __autoload() function
Hey Guys,
PHP manual suggests to autoload classes like
function __autoload($class_name){
require_once("some_dir/".$class_name.".php");
}
and this appoach works fine to load class FooClass saved …
0
votes
1answer
66 views
how to add a second path to the same namespace in the zend autoloader
We are working on a new zend framework project and most things are going fine with the bootstrap:
<?php
class Bootstrap extends Zend_Application_Bootstrap_Bootstrap
{
protected function …
0
votes
3answers
77 views
Dynamic Child Class generation - PHP
I have an abstract "object" class that provides basic CRUD functionality along with validation, etc. Typically I would use the __autoload($name) magic function to load a class that would exist in its …
0
votes
4answers
117 views
fire a function whose name is in a string
Hi everyone,
I'd like to fire a function. Unfortunately I can't call it directly as the functions' name is provided as a string.
Example:
function myFunction() {
alert('I am myFunction');
}
…
1
vote
3answers
92 views
How to autoload extended classes?
I am planning to use PHP's autoload function to dynamicly load only class files that are needed. Now this could create a huge mess if every single function has a seperate file, So I am hoping and …
2
votes
3answers
85 views
Is __autoload() called for parent classes of autoloaded classes?
In the main.php, autoload is added and a new object is created.
function __autoload ($class) {
require_once($class . '.php');
}
...
$t = new Triangle($side1, $side2, $side3);
Then in …
2
votes
4answers
155 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
2answers
136 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 …
2
votes
1answer
151 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 …
2
votes
7answers
218 views
autoload and multiple directories
Hi
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 …
2
votes
1answer
203 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, …
0
votes
4answers
85 views
PHP autoloader: ignoring non-existing include
I have a problem with my autoloader:
public function loadClass($className) {
$file = str_replace(array('_', '\\'), '/', $className) . '.php';
include_once $file;
}
As you can see, it's …
