show/hide this revision's text 3 invalid path given for the example

__autoload() (class-) files aided by set_include_path().

In PHP5 it is now unnecessary to specify long lists of "include_once()" statements when doing decent OOP.

Just define a small set of directory in which class-library files are sanely structured, and set the auto include path:

set_include_path(get_include_path() . PATH_SEPARATOR . '../libs/');`

Now the __autoload() routine:

 function __autoload($classname) {
    # every class is stored in a file "lib/classname.class.php"

    libs/classname.class.php"

    # note: temporary alter error_reporting to prevent WARNINGS
    # Do not suppress errors with a @ - syntax errors will fail silently!

    include_once("${classname}.class.php");
  }

Now PHP will automagically include the needed files on-demand, conserving parsing time and memory.

show/hide this revision's text 2 grammar

__autoload() of (class-)files in combination with class-) files aided by set_include_path().

In PHP5 it is now unnecessary to specify long lists of "include_once()" statements when doing decent OOP.

Just define a small set of directory in which class-library files are sanely structured, and set the auto include path:

set_include_path(get_include_path() . PATH_SEPARATOR . '../libs/');`

Now the __autoload() routine:

 function __autoload($classname) {
    # every class is stored in a file "lib/classname.class.php"

    # note: temporary alter error_reporting to prevent WARNINGS
    # Do not suppress errors with a @ - syntax errors will fail silently!

    include_once("${classname}.class.php");
  }

Now PHP will automagically include the needed files on-demand, conserving parsing time and memory.

show/hide this revision's text 1

__autoload() of (class-)files in combination with set_include_path().

In PHP5 it is now unnecessary to specify long lists of "include_once()" statements when doing decent OOP.

Just define a small set of directory in which class-library files are sanely structured, and set the auto include path:

set_include_path(get_include_path() . PATH_SEPARATOR . '../libs/');`

Now the __autoload() routine:

 function __autoload($classname) {
    # every class is stored in a file "lib/classname.class.php"

    # note: temporary alter error_reporting to prevent WARNINGS
    # Do not suppress errors with a @ - syntax errors will fail silently!

    include_once("${classname}.class.php");
  }

Now PHP will automagically include the needed files on-demand, conserving parsing time and memory.