php面试试题二

php面试试题二
1.以Apache模块的方式安装PHP,在文件http.conf中首先用语句_____动态装载PHP模块,
然后再用语句_____使用Apache把所有扩展名为php为php的文件都作为PHP脚本处理。
答案为: loadModule php5_module "c:/php/php5apache2.dll";
        addType application/x-httpd-php.php
2.语句include和require都能把另外一个文件包含到当前文件中,它们的区别是___;为
了避免多次包含同一文件,可以用语句__来代替它们。
答:区别:include产生一个警告,require产生导致一个致命的错误,
可以分别用:include_once ,require_once.
3.一个函数的参数不能是对变量的引用,除非在php.ini中把____设为on.
allow_call_time_pass_reference
4.SQL中left join的含义是___,如果tbl_user记录了学生的姓名(name)和学号(ID),
tbl_score记录了学生(有的学生考试以后被开除了,没有其记录)的学号(ID)和考试成绩(score)以及
考试科目(subject)。要想打印出各个学生姓名及对应的各科总成绩。则可以用sql语句实现。
1.left join的含义是:自然的左连接
create table tbl_user
(
ID   INT          not null,
name char(255)    not null,
primary key (ID)
)
create table tbl_scors
(
id     int(11)   not null,
score  char(255) not null,
subjec varchar(20) not null, 
)
具体的SQL语句如下:
select a.name,sum(b.score) as sum_list from tbl_user as a left join tbl_score as b on a.ID=b.ID group by a.ID
10.在PHP中,heredoc是一种特殊的字符的字符串,它的介绍标志必须是";";
11.写一个函数,能够遍历一个文件夹下的所有文件和子文件?
具体的函数实现如下:我测试过了没有问题
function my_scandir($dir){
$files=array();
if($handle=opendir($dir)){
while(($file=readdir($handle))!==false){
if($file!='..'&& $file!='.'){
if(is_dir($dir.'/'.$file)){
$files[$file]=scandir($dir."/".$file);
}else{
$files[]=$file;
}
}
}
closedir($handle);
return ($files);
}
}
echo "

";
print_r(my_scandir('C:/AppServ/www/re3/'));
echo "
";
?>

 

你可能感兴趣的:(php面试题,php,面试,apache模块,include,file,null)