1、PHP语言的一大优势是跨平台,什么是跨平台?

PHP的运行环境最优搭配为Apache+MySQL+PHP,此运行环境可以在不同操作系统(例如windows、Linux等)上配置,不受操作系统的限制,所以叫跨平台

2、WEB开发中数据提交方式有几种?有什么区别?百度使用哪种方式?

Get与post两种方式 区别:

  1. Get从服务器获取数据,post向服务器传送数据
  2. Get传值在url中可见,post在url中不可见
  3. Get传值一般在2KB以内,post传值大小可以在php.ini中进行设置
  4. get安全性非低,post安全性较高,执行效率却比Post高

建议:

  1. get式安全性较Post式要差些包含机密信息建议用Post数据提交式;
  2. 做数据查询建议用Get式;做数据添加、修改或删除建议用Post方式;

百度使用的get方式,因为可以从它的URL中看出

3、掌握PHP的哪些框架、模板引擎、系统等

  • 框架:框架有很多,例如zendframe、CI、Yii、Laravel等等,学过的thinkphp

  • 模板引擎:有很多,例如Smarty、Plates、Twig、Liquid、Mustache

  • 系统:有很多,例如:

    康盛的产品(uchome、supesite、discuzX等), 帝国系统、DEDECMS(织梦)、Ecshop等 PHPWind、ZenTao(禅道)项目管理

4、说一下你所掌握的网页前端技术有哪些?

熟练掌握DIV+CSS网页布局,html5,JavaScript,jQuery框架,photoshop图片处理

5. AJAX的优势是什么?

ajax是异步传输技术,可以通过javascript实现,也可以通过JQuery框架实现,实现局部刷新,减轻了服务器的压力,也提高了用户体验

6. 安全对一套程序来说至关重要,请说说在开发中应该注意哪些安全机制?

  1. 防远程提交;
  2. 防SQL注入,对特殊代码进行过滤;
  3. 防止注册机灌水,使用验证码;

5. 在程序的开发中,如何提高程序的运行效率?

  1. 优化SQL语句,查询语句中尽量不使用select *,用哪个字段查哪个字段; 少用子查询可用表连接代替;少用模糊查询;
  2. 数据表中创建索引;
  3. 对程序中经常用到的数据生成缓存;

6. PHP可否与其它的数据库搭配使用?

PHP与MYSQL数据库是最优搭配,当然PHP也可以去其它的数据库搭配使用,例如MSSQL等,PHP中预留了操作MSSQL的函数,只要开启就可以使用

7. 现在编程中经常采取MVC三层结构,请问MVC分别指哪三层,有什么关系,有什么优点?

MVC是一种开发模式,主要分为三部分:

  • m(model),也就是业务模型,负责数据的操作;
  • v(view),也就是视图,负责前后台的显示;
  • c(controller),也就是控制器,负责业务逻辑

由控制器层调用模型处理数据,然后将数据映射到视图层进行显示

客户端请求项目的控制器,如果执行过程中需要用到数据,控制器就会到模型中获取数据,再将获取到的数据通过视图显示出来

优点是:

  1. 可以实现代码的重用性,避免产生代码冗余;
  2. M和V的实现代码分离,从而使同一个程序可以使用不同的表现形式

8.对json数据格式的理解?

JSON(JavaScript Object Notation)是一种轻量级的数据交换格式,json数据格式固定,可以被多种语言用作数据的传递

PHP中处理json格式的函数为json_decode( string $json [, bool $assoc ] ) ,接受一个JSON格式的字符串并且把它转换为PHP变量,参数json待解码的json string格式的字符串。assoc当该参数为TRUE时,将返回array而非object;

Json_encode:将PHP变量转换成json格式

9.Print、echo、print_r有什么区别?

  1. echo和print都可以做输出,不同的是,echo不是函数,没有返回值,而print是一个函数有返回值,所以相对而言如果只是输出echo会更快,而print_r通常用于打印变量的相关信息,通常在调试中使用。
  2. print 是打印字符串
  3. print_r 则是打印复合类型 如数组 对象

10. SESSION与COOKIE的区别?

  1. 存储位置:session存储于服务器,cookie存储于浏览器
  2. 安全性:session安全性比cookie高
  3. session为‘会话服务’,在使用时需要开启服务,cookie不需要开启,可以直接用

11. PHP处理数组的常用函数?(重点看函数的‘参数’和‘返回值’)

  1. array()创建数组;
  2. count()返回数组中元素的数目;
  3. array_push()将一个或多个元素插入数组的末尾(入栈);
  4. array_column()返回输入数组中某个单一列的值;
  5. array_combine()通过合并两个数组来创建一个新数组;
  6. array_reverse()以相反的顺序返回数组;
  7. array_unique()删除数组中的重复值;
  8. in_array()检查数组中是否存在指定的值;

12.PHP处理字符串的常用函数?(重点看函数的‘参数’和‘返回值’)

  1. trim()移除字符串两侧的空白字符和其他字符;
  2. substr_replace()把字符串的一部分替换为另一个字符串;
  3. substr_count()计算子串在字符串中出现的次数;
  4. substr()返回字符串的一部分;
  5. strtolower()把字符串转换为小写字母;
  6. strtoupper()把字符串转换为大写字母;
  7. strtr()转换字符串中特定的字符;
  8. strrchr()查找字符串在另一个字符串中最后一次出现;
  9. strstr()查找字符串在另一字符串中的第一次出现(对大小写敏感);
  10. strrev()反转字符串;
  11. strlen()返回字符串的长度;
  12. str_replace()替换字符串中的一些字符(对大小写敏感);
  13. print()输出一个或多个字符串;
  14. explode()把字符串打散为数组;
  15. is_string()检测变量是否是字符串;
  16. strip_tags()从一个字符串中去除HTML标签;
  17. mb_substr()用来截中文与英文的函数

13.PHP处理时间的常用函数?(重点看函数的‘参数’和‘返回值’)

  1. date_default_timezone_get()返回默认时区。
  2. date_default_timezone_set()设置默认时区。
  3. date()格式化本地时间/日期。
  4. getdate()返回日期/时间信息。
  5. gettimeofday()返回当前时间信息。
  6. microtime()返回当前时间的微秒数。
  7. mktime()返回一个日期的 Unix时间戳。
  8. strtotime()将任何英文文本的日期或时间描述解析为 Unix时间戳。
  9. time()返回当前时间的 Unix时间戳。

14.PHP处理数据库的常用函数?(重点看函数的‘参数’和‘返回值’)

请参照php手册,认真查看,此项非常重要

15.PHP操作文件的常用函数?(重点看函数的‘参数’和‘返回值’)

  1. 打开文件;
  2. 删除文件;
  3. 读取文件;
  4. 写入文件;
  5. 修改文件;
  6. 关闭文件;
  7. 创建文件等等,

此项非常重要,在工作中经常用来生成缓存或者静态文件,请参照php手册,认真查看

16.PHP操作目录(文件夹)的常用函数?(重点看函数的‘参数’和‘返回值’)

  1. 打开目录;
  2. 删除目录;
  3. 读取目录;
  4. 创建目录;
  5. 修改目录;
  6. 关闭目录等等, 此项非常重要,在工作中经常用来
  • 创建或者删除上传文件的目录,
  • 创建或者删除缓存、
  • 静态页面的目录,

请参照php手册,认真查看

17.laravel有那些特点?

laravel框架引入了门面,依赖注入,Ioc模式,以及各种各样的设计模式等

主要优点如下:

  1. 强大的rest router:用简单的回调函数就可以调用,快速绑定controller和router
  2. artisan:命令行工具,很多手动的工作都自动化
  3. 可继承的模板,简化view的开发和管理
  4. blade模板:渲染速度更快
  5. ORM操作数据库
  6. migration:管理数据库和版本控制
  7. 测试功能也很强大
  8. composer也是亮点

18.请简述一下数据库的优化?

数据库的优化可以从四个方面来优化:

  1. 从结构层: web服务器采用负载均衡服务器,mysql服务器采用主从复制,读写分离
  2. 从储存层: 采用合适的存储引擎,采用三范式
  3. 从设计层: 采用分区分表,索引,表的字段采用合适的字段属性,适当的采用逆范式,开启mysql缓存
  4. sql语句层:结果一样的情况下,采用效率高,速度快节省资源的sql语句执行

19.自定义session处理函数要处理那些东西

默认是用文件存储session,在php配置中指定存储目录,可以进行多级缓存,便于查找。

可以用数据库表,redis,memcached等来存储session会话。

session_start() 会触发open(),read()

session_commit()以及页面执行完毕都会顺序触发 write(),close()*

自定义Session处理机制首先要设置php.ini选项session.save_handler = user,

也可在 PHP程序 中进行设置:ini_set(‘session.save_handler’, ‘user’);

接下来着重看 session_set_save_handle() 函数,此函数有六个参数:

session_set_save_handler(string open, string close, string read, string write, string destroy, string gc)

各个参数为各项操作的函数名,这些操作依次对应是:打开、关闭、读取、写入、销毁、垃圾回收。

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
class FileSessionHandler{
    private $savePath;
    //第一个参数$save_path对应的是ini_get('session.save_path')
    //第二个参数$name对应的是ini_get('session.name')
    function open($savePath, $sessionName){
        $this->savePath = $savePath;
        if (!is_dir($this->savePath)) {
            mkdir($this->savePath, 0777);
        }
        return true;
    }

    function close(){
        return true;
    }

    function read($id){
        return (string)@file_get_contents("$this->savePath/sess_$id");
    }

    function write($id, $data){
        return file_put_contents("$this->savePath/sess_$id", $data) === false ? false : true;
    }

    function destroy($id){
        $file = "$this->savePath/sess_$id";
        if (file_exists($file)) {
            unlink($file);
        }
        return true;
    }

    function gc($maxlifetime){
        foreach (glob("$this->savePath/sess_*") as $file) {
            if (filemtime($file) + $maxlifetime < time() && file_exists($file)) {
                unlink($file);
            }
        }

        return true;
    }
}

$handler = new FileSessionHandler();
session_set_save_handler(
        array($handler, 'open'),
        array($handler, 'close'),
        array($handler, 'read'),
        array($handler, 'write'),
        array($handler, 'destroy'),
        array($handler, 'gc')
    );

// the following prevents unexpected effects when using objects as save handlers
register_shutdown_function('session_write_close');
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
class DatabaseSession implements SessionHandlerInterface{
    /**
     * Reference to the table handling the session data
     */
    protected $_table;

    /**
     * Number of seconds to mark the session as expired
     */
    protected $_timeout;

    /**
     * Constructor. Looks at Session configuration information and
     * sets up the session model.
     * @param array $config The configuration for this engine. It requires the 'model'
     * key to be present corresponding to the Table to use for managing the sessions.
     */
    public function __construct(array $config = []){
        if (empty($config['model'])) {
            $config = TableRegistry::exists('Sessions') ? [] : ['table' => 'sessions'];
            $this->_table = TableRegistry::get('Sessions', $config);
        } else {
            $this->_table = TableRegistry::get($config['model']);
        }
        $this->_timeout = ini_get('session.gc_maxlifetime');
    }

    /**
     * Method called on open of a database session.
     * @param string $savePath The path where to store/retrieve the session.
     * @param string $name The session name.
     * @return bool Success
     */
    public function open($savePath, $name){
        return true;
    }

    /**
     * Method called on close of a database session.
     *
     * @return bool Success
     */
    public function close(){
        return true;
    }

    /**
     * Method used to read from a database session.
     *
     * @param int|string $id The key of the value to read
     * @return mixed The value of the key or false if it does not exist
     */
    public function read($id){
        $result = $this->_table
            ->find('all')
            ->select(['data'])
            ->where([$this->_table->primaryKey() => $id])
            ->hydrate(false)
            ->first();

        if (empty($result)) {
            return false;
        }
        return $result['data'];
    }

    /**
     * Helper function called on write for database sessions.
     *
     * @param int $id ID that uniquely identifies session in database
     * @param mixed $data The value of the data to be saved.
     * @return bool True for successful write, false otherwise.
     */
    public function write($id, $data){
        if (!$id) {
            return false;
        }
        $expires = time() + $this->_timeout;
        $record = compact('data', 'expires');
        $record[$this->_table->primaryKey()] = $id;
        $result = $this->_table->save(new Entity($record));
        return (bool)$result;
    }

    /**
     * Method called on the destruction of a database session.
     * @param int $id ID that uniquely identifies session in database
     * @return bool True for successful delete, false otherwise.
     */
    public function destroy($id){
        return (bool)$this->_table->delete(new Entity(
            [$this->_table->primaryKey() => $id],
            ['markNew' => false]
        ));
    }

    /**
     * Helper function called on gc for database sessions.
     *
     * @param string $maxlifetime Sessions that have not updated for the last maxlifetime seconds will be removed.
     * @return bool True on success, false on failure.
     */
    public function gc($maxlifetime){
        $this->_table->deleteAll(['expires <' => time() - $maxlifetime]);
        return true;
    }
}