PHP开发工程师笔试(十八)

时长:60分钟 总分:100分

253浏览 1人已完成答题

题型介绍
题型 单选题 多选题 简答题
数量 9 1 2
PHP开发工程师笔试(十八)
1.
有以下程序 #include main() {int a=2,b=3,c=4,d=0; if(a==2 &&b++==3) if(b!=3 || c--==4) printf("%d,%d,%d\n",a,b,c); else printf("%d,%d,%d\n",a,b,c); else printf("%d,%d,%d\n",a,b,c); } 程序运行后的输出结果是( )
问题详情




2.
在ISO/OSI参考模型中,网络层的主要功能是()
问题详情




3.
有以下程序 #include main() { char *a="How are you?",b[20]; ______________________________ printf("%s %s\n",a,b);} 请为横线处选择适当的输入语句使得( ) 程序运行时从键盘输入:How are you?<回车> 得到的输出结果为How are you?How
问题详情




4.
HTTP的会话有四个过程,请选出不是的一个()
问题详情




5.
有以下程序 #include int fun(int x) { static int a=3; x+=a++; return x; } main() { int x=2,sum; sum=fun(x); sum=sum+fun(x); printf("%d\n",sum);} 程序运行以后的输出结果是( )
问题详情




6.
在用浏览器查看网页时出现404错误可能的原因是 ( )
问题详情




7.
<?php echo(floor(0.60)); echo(floor(0.1+0.7)*10); echo(floor(5.1)); echo(floor(-5.9)) 上述代码输出结果为( )
问题详情




8.
下列函数的功能是( ) f(char * x, char * y) { do{x++,y++;} while((*x==*y)!=’\0’); }
问题详情




9.
请详细阅读下面列出的表单和PHP代码。当在表单里面的两个文本框分别输入“php”和“great”的时候,PHP将在页面中打印出什么?( ) <form action=”index.php” method=”post”> <input type=”text” name=”element[]”> <input type=”text” name=”element[]”> </form> <?php echo $_GET[‘element’]; ?>
问题详情





10.
以下关于key( )和t( )函数的叙述,请找出两个正确的答案:( )
问题详情




11.
innodb引擎与MyIASM引擎的区别是什么?
问题详情
12.
curl_setopt函数的作用是什么?具体使用中可以有哪些参数并说明哪个选项是必要。
问题详情