답변:
foreach (glob("classes/*.php") as $filename)
{
include $filename;
}
get_include_path()
여전히 로딩 순서를 자동으로 결정할 수 없습니다 (확장 된 클래스 이후에 기본 클래스가로드되어 오류가 발생할 수 있음)
다음은 PHP 5의 여러 폴더에서 많은 클래스를 포함하는 방법입니다. 클래스가있는 경우에만 작동합니다.
/*Directories that contain classes*/
$classesDir = array (
ROOT_DIR.'classes/',
ROOT_DIR.'firephp/',
ROOT_DIR.'includes/'
);
function __autoload($class_name) {
global $classesDir;
foreach ($classesDir as $directory) {
if (file_exists($directory . $class_name . '.php')) {
require_once ($directory . $class_name . '.php');
return;
}
}
}
나는 이것이 오래된 게시물이라는 것을 알고 있지만 클래스를 포함하지 마십시오 ... 대신 __autoload
function __autoload($class_name) {
require_once('classes/'.$class_name.'.class.php');
}
$user = new User();
그런 다음 아직 포함되지 않은 새 클래스를 호출 할 때마다 PHP는 자동 실행 __autoload를 포함하고 자동으로 포함합니다
이것은 Karsten의 코드를 수정 한 것입니다.
function include_all_php($folder){
foreach (glob("{$folder}/*.php") as $filename)
{
include $filename;
}
}
include_all_php("my_classes");
2017 년에이를 수행하는 방법 :
spl_autoload_register( function ($class_name) {
$CLASSES_DIR = __DIR__ . DIRECTORY_SEPARATOR . 'classes' . DIRECTORY_SEPARATOR; // or whatever your directory is
$file = $CLASSES_DIR . $class_name . '.php';
if( file_exists( $file ) ) include $file; // only include if file exists, otherwise we might enter some conflicts with other pieces of code which are also using the spl_autoload_register function
} );
PHP 문서에서 권장하는 위치 : 자동 로딩 클래스
autoload
아직로드되지 않은 클래스의 객체를 만들려고 할 때만 작동 하기 때문에 질문에 대답하지 않습니다 .
set_include_path 사용할 수 있습니다 :
set_include_path('classes/');
classes/
include
require
디렉토리 및 서브 디렉토리에 모두를 포함 시키려면 다음을 수행하십시오.
$dir = "classes/";
$dh = opendir($dir);
$dir_list = array($dir);
while (false !== ($filename = readdir($dh))) {
if($filename!="."&&$filename!=".."&&is_dir($dir.$filename))
array_push($dir_list, $dir.$filename."/");
}
foreach ($dir_list as $dir) {
foreach (glob($dir."*.php") as $filename)
require_once $filename;
}
알파벳 순서를 사용하여 파일을 포함한다는 것을 잊지 마십시오.
The entries are returned in the order in which they are stored by the filesystem.
- php.net/manual/en/function.readdir.php
한 번에 각 클래스를 정의하지 않고 많은 클래스를 포함하려는 경우 다음을 사용할 수 있습니다.
$directories = array(
'system/',
'system/db/',
'system/common/'
);
foreach ($directories as $directory) {
foreach(glob($directory . "*.php") as $class) {
include_once $class;
}
}
이렇게하면 클래스가 포함 된 PHP 파일에서 클래스를 정의 할 수 있습니다. $thisclass = new thisclass();
모든 파일을 얼마나 잘 처리합니까? 이것으로 약간의 속도 저하가 있을지 확실하지 않습니다.
파일간에 의존성 이 없다면 ... 모든 하위 디렉토리에 모든 PHP 파일을 포함하는 재귀 함수입니다.
$paths = array();
function include_recursive( $path, $debug=false){
foreach( glob( "$path/*") as $filename){
if( strpos( $filename, '.php') !== FALSE){
# php files:
include_once $filename;
if( $debug) echo "<!-- included: $filename -->\n";
} else { # dirs
$paths[] = $filename;
}
}
# Time to process the dirs:
for( $i=count($paths)-1; $i>0; $i--){
$path = $paths[$i];
unset( $paths[$i]);
include_recursive( $path);
}
}
include_recursive( "tree_to_include");
# or... to view debug in page source:
include_recursive( "tree_to_include", 'debug');
<?php
//Loading all php files into of functions/ folder
$folder = "./functions/";
$files = glob($folder."*.php"); // return array files
foreach($files as $phpFile){
require_once("$phpFile");
}
readdir () 함수를 사용한 다음 파일을 반복하여 포함시키는 것이 좋습니다 ( 해당 페이지의 첫 번째 예 참조).
디렉토리에 파일을 포함시키기 위해 function ()을 작성하지 마십시오. 변수 범위를 잃을 수 있으며 "전역"을 사용해야 할 수도 있습니다. 파일을 반복하십시오.
또한 포함 된 파일에 아직 포함되지 않은 다른 파일에 정의 된 다른 클래스로 확장 될 클래스 이름이있는 경우 문제가 발생할 수 있습니다. 그러니 조심해.