강의

멘토링

로드맵

Inflearn brand logo image
Programming

/

Programming Language

PHP 7+ Programming

I created this course with the desire to make it a bible for those starting the PHP language, covering everything from basic grammar and built-in functions to web security and building a bulletin board.

(3.7) 30 reviews

444 learners

  • pronist
PHP

I'll introduce some extensions that are useful to know about.

Although not mentioned, I will introduce some useful extensions . You do not need to learn all the extensions introduced below, and you can use them as needed . They are not covered in the lecture because they are not important. Of course, the ones marked with ★ can be important depending on the situation.

  • Fileinfo - Useful for getting information related to MIME types .
  • Ctype - Checks the type of a variable , but in a slightly different way.
  • iconv - Extensions related to encoding .
  • GD - Used for image processing . (★)
  • Multibyte String - Useful when handling multibyte strings such as Korean. (★ - Strings )
  • Sockets - Used when configuring socket servers and clients . (★ - Streams (2) )
  • XML Parser - Used when parsing XML . In object-oriented, you can also use XMLReader , DOM , etc. (★)
Comment