Home Backend Development PHP Tutorial php面试精华题-谢新阳

php面试精华题-谢新阳

Jun 20, 2016 pm 12:29 PM

1、include 和require 的区别?

include引入文件的时候,如果碰到错误,会给出一个警告,并继续运行下边的代码。

require:引入文件的时候,如果碰到错误,会产生一个致命错误错误,并停止运行下边的代码。_once  后缀表示已加载的文件不再加载 防止代码重复加载



2、nosql 数据库和mysql数据库 以及mongodb数据库的区别?

Nosql 是非关系型数据库 mysql是关系型数据库 mongodb是介于关系型和非关系型之间的数据库  

Mysql  支持查询关系复杂 逻辑业务复杂的操作 支持事务和外键 约束

Mongodb 支持一些简单的业务关系的查询 查询速度快 不支持事务 适合高并发高访问 非常占用内存



3、Memcache 和redis 的区别 ?

     Memcache  基于内存的  查询速度快  缺点 服务器一关机数据就没了  类型单一  

Redis  基础内存 查询速度快 支持持久化存储 类型多样支持复杂的业务  (数据存储在磁盘里 当存储到一定数量或者一  定时间时 才往磁盘里存 不是次次都存)



4、通过什么手段可以检查哪些sql执行速度慢?

通过慢查询来检查 (是检查手段)



5、有一个sql执行速度慢、想要减少执行时间、你有什么解决的办法?

1 、 根据where条件后面的字段添加索引 添加索引

2、 表设计优化存储方式(比如:时间字段10位int 状态字段 tinyint等) 优化表字段存储设计

3、 看表是否数据多,用数据水平切割和竖直切割等手段将大数据切割成小数据 (水平切割:分区分表、竖直切割,将某些频繁查询使用的字段单独切割到一张表里);  大数据切割

4、 优化sql语句 (比如查询某个字段就只查询某个字段 不用*来查询所有、用join连接来代替子查询) ;

5、 配置多个mysql服务器  读写分离 主从配置(一主多从,多主多从) 因为增删改会锁表 查询会有阻塞等待;

      用memcache做一个缓存可以减少sql的查询次数 也能减少msql数据库的压力 ;但不能减少sql执行时间



6、T框架D()和M()有什么区别?

D实力化一个子类 M实例化一个基类 D实例化子类的时候model中没有建子类模型就去实例化基类



7、如果我想直接通过表名实例化一个基类 用D()还是M()快,为什么?

M()方法速度快 因为M()直接实例化一个基类 和D() 先实例化子类如果不存在去实例 化基类



8、支付宝支付和微信支付有什么区别?

支付宝支付有同步跳转和异步通知  

微信支付 有3种支付类型 公众号支付 扫码支付 刷卡支付 只有异步通知 通过付款结果自己通过  交易号来查询一下订单付款状态

扫码支付分为两种支付模式

    模式一  通过二维码回调地址需要查询商品的价格  然后调用统一下单api  适用于一个商品

      模式二  先生成订单 没有模式一商品价格查询那几部  可适用于购物车等多个商品付款生成订单下单



9 、Memcache 有时候存值存不进去 数据会丢失 为什么?

   1、有可能memcache 设置的内存满了 内存满了

   2、内存条局部故障了

   3、装的memcache扩展兼容的不好

   4、可能你存的数据类型不对,memcache不支持这种类型  php操作失误



10 、TP和yii 等 怎么用读写分离?

   在配置里配置好mysql服务器主从的账号密码连接等信息



11 、mysql数据库 用的什么算法 为什么复合索引要从左到右从上到下的原则呢?

     二叉数算法          因为mysql引擎使用的二叉数算法 一级一级向下分散



12 、负载均衡的原理是什么  有设么作用?

负载均衡服务器对来一个公网ip   起到一个分流作用









13 、svn和git 有什么区别?

Svn  集中式版本管理器   其中有个人 代码上传出问题 所有人都出问题了

Git 分布式版本管理器    一个人对应一个版本管理器 某个人坏了 不影响其他人

14、表单中get方法和post方法有什么区别?

get是发送请求HTTP协议通过url参数传递进行接收(最大提交多少根据浏览器url长度的限制来定的 )而post是实体数据,可以通过表单提交大量信息.

15、对于大流量的网站,您采用什么样的方法来解决访问量问题?

答:   确认服务器硬件是否足够支持当前的流量,(硬件方面)

数据库读写分离,(mysql优化 )

优化数据表,(分区分表 建立索引

禁止外部的盗链,(做一个防盗链)

控制大文件的下载(下载设限制)

使用不同主机分流主要流量(负载均衡)

16、常用的数组处理函数?

   array_search()  在数组中搜索给定的值,如果成功则返回相应的键名。

  array_merge()  把一个或多个数组合并为一个数组。

  array_unique()  删除数组中重复的值。

  array_keys()  返回数组中所有的键

  in_array() 检查数组中是否存在指定的值。

   list()    把数组中的值赋给一些变量。

  Implode()  把数组连接成一个字符串

  Explode()  把字符串分割成数组

17、索引有几种类型、几种索引方式?

  1、全文索引 Full Text

    唯一索引 Unique

普通索引 Normal

18、什么对象关系映射?

       将一个实体化对象转化为关系型数据库一条数据

       或者将关系型数据库的一条数据转化为实体化的对象

      实体化对象转化为关系型数据的机制为对象关系应映射 也称ORM

      ORM是dao接口针对关系型数据库的一种实现 本质上ORM是dao的一个实现类

      ORM数据源仅仅局限在关系型数据库 针对不同的数据源 我们可以编写不同的dao实现类

19、现在程序设置基本上是什么样的趋势?

        现在程序设计的趋势,基本是OOP面向对象编程的思想

       万物皆对象  把所有事物当做一个对象还看待


20、传值和传引用有什么区别?

传值 相当于把$a 的值 赋值传给$b  需要复制值  值很多 的话复制慢  

传引用相当 于把$b 和$a 放在同一个空间内 那么 值相同了 没有复制值

也就是说 如果一个变量包含很多内容 使用传引用比传值更好、速度更快

>  >

>


Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles