热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

PHP 面试题与答案

Test your skills through the online practice test: PHP Quiz Online Practice Test

相关差异对比

PHP vs JSP

问题 16. I am writing an application in PHP that outputs a printable version of driving directions. It contains some long sentences, and I am a neat freak, and would like to make sure that no line exceeds 50 characters. How do I accomplish that with PHP?

On large strings that need to be formatted according to some length specifications, use wordwrap() or chunk_split().

这有帮助吗? 添加评论 查看评论
 

问题 17. What's the difference between htmlentities() and htmlspecialchars()?

htmlspecialchars only takes care of <, >, single quote ', double quote " and ampersand. htmlentities translates all occurrences of character sequences that have different meaning in HTML.

这有帮助吗? 添加评论 查看评论
 

问题 18. What's the difference between md5(), crc32() and sha1() crypto on PHP?

The major difference is the length of the hash generated. CRC32 is, evidently, 32 bits, while sha1() returns a 128 bit value, and md5() returns a 160 bit value. This is important when avoiding collisions.

这有帮助吗? 添加评论 查看评论
 

问题 19. So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?

Crypto usage in PHP is simple, but that doesn't mean it's free. First off, depending on the data that you're encrypting, you might have reasons to store a 32-bit value in the database instead of the 160-bit value to save on space. Second, the more secure the crypto is, the longer is the computation time to deliver the hash value. A high volume site might be significantly slowed down, if frequent md5() generation is required.

这有帮助吗? 添加评论 查看评论
 

问题 20. How do you match the character ^ at the beginning of the string?

^^

这有帮助吗? 添加评论 查看评论
 
htmlentities() and htmlspecialchars()? 3) What's the difference between md5(), crc32() and sha1() crypto on PHP? 4) So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()? 5) How do you match the character ^ at the beginning of the string? " />

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。