PHP面试题

当前位置: 面试问题网 > PHP面试题 > PHP经典面试题

PHP经典面试题

1 请说明 PHP 中传值与传引用的区别。什么时候传值什么时候传引用?
   答: 传值只是把某一个变量的值传给了另一个变量,而引用则说明两者指向了同一个地方。
   2 在PHP中error_reporting这个函数有什么作用?
   答: The error_reporting() function sets the error_reporting directive at runtime. PHP has many levels of errors, using this function sets that level for the duration (runtime) of your script.
   3 请用正则表达式(Regular Expression)写一个函数验证电子邮件的格式是否正确。
   答:
   php
   if(isset($_POST['action']) &&
   $_POST['action']==’submitted’)
   {
   $email=$_POST['email'];
   if(!preg_match(“/^(?:w+.?)*w+@(?:w+.?)*w+$/”,$email))
   {
   echo
   “电子邮件检测失败”;
   }
   else
   {
   echo
   “电子邮件检测成功”;
   }
   }
   else
   {
   ?>

【PHP经典面试题】相关文章

1. PHP经典面试题

2. 可以在一个PHP文件里面include另外一个PHP文件两次吗

3. 分享经典面试故事

4. 汇丰银行经典面试案例

5. 导游经典面试自我介绍

6. 一份比较全的PHP面试题

7. Yahoo的PHP面试题

8. Yahoo-PHP面试题1

9. Yahoo-PHP面试题4

10. PHP面试题附答案

本文来源:https://www.mianshiwenti.com/a12915.html

点击展开全部

《PHP经典面试题》

将本文的Word文档下载到电脑,方便收藏和打印

推荐程度:

进入下载页面
上一篇:Yahoo-PHP面试题1 下一篇:Yahoo的PHP面试题

﹝PHP经典面试题﹞相关内容

「PHP经典面试题」相关专题

其它栏目

也许您还喜欢