- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
function run_service($ivf_service)
{
$ivf_result = null;
if ( file_exists('base/services/'.$ivf_service.'/config.php') )
{
$ivf_result.= include_once('base/services/'.$ivf_service.'/config.php');
}
if ( file_exists('base/services/'.$ivf_service.'/index.php') )
{
$ivf_result.= include_once('base/services/'.$ivf_service.'/index.php');
}
return $ivf_result;
}
Проблема в том что каждый раз "вручную" писать это ни к чему. А такой вид вызывает сомнения в рациональности и скорости обработки. Как можно это удобно реализовать без юзания классов и автоинклудинга?
shithead 18.02.2012 00:23 # 0
{
if( is_null($ivf_resultl) ) return false;
if ( file_exists('base/services/'.$ivf_service.'/config.php') )
{
include_once('base/services/'.$ivf_service.'/config.php');
}
if ( file_exists('base/services/'.$ivf_service.'/index.php') )
{
include_once('base/services/'.$ivf_service.'/index.php');
}
return true;
}
belkir 18.02.2012 12:28 # 0
shithead 18.02.2012 15:51 # 0
belkir 18.02.2012 18:05 # 0
TarasB 18.02.2012 18:13 # 0
belkir 18.02.2012 18:16 # 0
TarasB 18.02.2012 18:20 # 0
belkir 18.02.2012 18:51 # 0
<?php
$a = 1;
?>
function incl($file)
{
return include_once($file);
}
incl('some_file.php');
echo $a;
Ничего не выводит...
Vasiliy 18.02.2012 19:58 # 0
belkir 18.02.2012 20:02 # 0
TarasB 18.02.2012 21:10 # +1
belkir 18.02.2012 21:40 # −1