PHP面试题(1)

  • 第一题

写一个php脚本,抓取页面http://php.net/manual/en/langref.php右侧的目录列表.运行此脚本期望得到如下输出:

    [2016-12-17 13:44:30] fetching http://php.net/manual/en/langref.php
    [2016-12-17 13:44:31] parsing start
    [2016-12-17 13:44:32] the right side list is:
    PHP Manual (http://php.net/manual/en/index.php)
    Copyright (http://php.net/manual/en/copyright.php)
    PHP Manual (http://php.net/manual/en/manual.php)
    Getting Started (http://php.net/manual/en/getting-started.php)
    Installation and Configuration (http://php.net/manual/en/install.php)
    Language Reference (http://php.net/manual/en/langref.php)
    Security (http://php.net/manual/en/security.php)
    Features (http://php.net/manual/en/Features)
    Function Reference (http://php.net/manual/en/funcref.php)
    PHP at the Core: A Hacker's Guide (http://php.net/manual/en/internals2.php)
    FAQ (http://php.net/manual/en/faq.php)
    Appendices (http://php.net/manual/en/appendices.php)
    [2016-12-17 13:44:33] parsing end
    [2016-12-17 13:44:34] saving to file langref.txt
    [2016-12-17 13:44:35] saved

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

代码如下:

     'http://php.net/manual/en/langref.php'));
    $reg           = '/
  • 第二题

创建一个数据库php_manual,新建表index,这个表有3个字段: id, title, link.
然后创建一个数据库用户php_manual_user,密码是php_manual_pass.
把上述数据库导出成sql,把SQL语句贴到下面,使得我们在mysql命令行终端里执行这些sql语句可以完成上述操作.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

代码如下:

#  前提是已经以root权限登录
#  删除原来已经存在同名数据库
drop database if exists `php_manual`;
#  创建数据库
create database `php_manual`;
#  选择需要操作的数据库
use `php_manual`;
#  删除原来已经存在的同名数据表
drop table if exists `index`;
# 创建数据表
create table `index` (
    id int unsigned auto_increment primary key,
    title varchar(255) not null,
    link varchar(255) not null
)engine=InnoDB auto_increment=1 default charset=utf8;
#  创建用户名密码
create user `php_manual_user`@'%' identified by 'php_manual_pass';
# 退出命令行模式
exit;
# 命令行下执行以下命令导出数据库
mysqldump -uphp_manual_user -pphp_manual_pass php_manual > D:/php_manual.sql
  • 第三题

写一个php脚本,读取第1题的结果langref.txt并解析出title和link,插入第2题创建的数据库表index里.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

代码如下:

  connect_error) {
            die('Error:' . $conn->connect_error);
        }
        foreach ($title as $key => $value) {
            $sql = 'INSERT INTO `index` (title, link) VALUES ("' . $value . '", "' . $link[$key] . '")';
            echo $sql;
            if (true === $conn->query($sql)) {
                echo 'Insert ' . $key . 'line successful
'; } else { die('Cannot insert the data to mysql' . $conn->connect_error); } } $conn->close();
  • 第四题

使用jQuery写一个function来解析langref.php右侧的目录列表,运行这个function返回如下一个object.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

{
    "Copyright": "http://php.net/manual/en/copyright.php",
    "PHP Manual": "http://php.net/manual/en/manual.php",
    "Getting Started": "http://php.net/manual/en/getting-started.php",
    "Installation and Configuration": "http://php.net/manual/en/install.php",
    "Language Reference": "http://php.net/manual/en/langref.php",
    "Security": "http://php.net/manual/en/security.php",
    "Features": "http://php.net/manual/en/Features",
    "Function Reference": "http://php.net/manual/en/funcref.php",
    "PHP at the Core: A Hacker's Guide": "http://php.net/manual/en/internals2.php",
    "FAQ": "http://php.net/manual/en/faq.php",
    "Appendices": "http://php.net/manual/en/appendices.php"
}
  • 答:

  • 第五题

写一条shell命令,执行此命令可获取到http://php.net/manual/en/langref.php的内容并将页面里的所有大写的PHP转成小写,最后将结果保存到/tmp/langref.html里.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

  • 第六题:

(加分题) 改写下边的脚本,使得当接收到SIGINT信号时打印出"caught signal SIGINT, exit"并退出.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

  • 第七题:

(加分题) 有一个超级大的int数组要求和,假设有1000W,写一个php脚本,根据当前机器(假设是多核的)cpu的核数,fork出这么多子进程,把数组平分,每个子进程计算其中一部分,并把结果保存到/tmp/子进程pid.txt.
最后父进程汇总并输出求各结果.

作者:何广宇

链接:https://www.zhihu.com/question/19757909/answer/13621166

来源:知乎

著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

  • 答:

你可能感兴趣的:(PHP面试题(1))