人気の面接質問と回答・オンラインテスト
面接対策、オンラインテスト、チュートリアル、ライブ練習のための学習プラットフォーム

集中型学習パス、模擬テスト、面接向けコンテンツでスキルを伸ばしましょう。

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。