Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
<?php foreach ( glob( 'http://site.ru/includes/*.{php, css}', GLOB_BRACE ) as $file ) { if ( $file != array( 'custom.php', 'custom.css' ) ) { include_once $file; } } ?>
<?php foreach ( glob( 'http://site.ru/includes/*.{php, css}', GLOB_BRACE ) as $file ) { if ( !in_array($file, ['custom.php', 'custom.css'] ) ) { include_once $file; } } ?>