Table of Contents
Start and end tags
Home Backend Development PHP Tutorial What beginners should know about PHP

What beginners should know about PHP

Jun 23, 2017 pm 01:35 PM
php

Start and end tags

  1. Two commonly used ones: <?php ?>,<script language="php"> </script>

  2. ##Short tag:

    , you need to open the short_open_tag command of the php.ini file

  3. ASP style tag:

    <% %>, you need to open the asp_tags directive of the php.ini file

  4. ##php data type (9 Kinds)

    Four scalar types
##boolean
  • integer
  • float
  • string
Three composite types
array
  • object
  • callable
Two special types
  1. ##resource
  • NULL (no type)

  • Pseudo-type
  1. mixed )
  • number (number type)

  • callback (callback type, also called callable)

  • array|object

  • void

  • ##pseudovariable$...
  1. Type detection function (is_type), eg:

    is_string($str)

  2. ##Super global variable

  3. $GLOBALS

    $_SERVER: Save information about headers, paths, script locations, etc.
  • ##$_REQUEST: Collect data submitted by html forms
  • $_POST
  • $_GET
  • $_FILES
  • $_ENV
  • $_COOKIE
  • $_SESSION
  • Access global variables within the function body
  • global $variable_name

$GLOBALS[variable_name]
  • Set constants
  • define(const_name, const_value, boolean)

const_name: constant name

const_value: constant value
  • boolean: constant names are case-sensitive, default false is sensitive, true is insensitive
  • Create array
  • array()

  • Get the array length

    count($arr)

  • Array sorting : ascending order

    sort(), descending order rsort()

  • Array key sorting: ascending order ksort(), descending order krsort()

  • Array value sorting: ascending asort(), descending arsort()

  • foreach loop (only for arrays)

  • foreach($array as $value) {}

  • foreach($array as $key => $value) {}

  • Magic variable

  • __LINE__
: Current line number

  • __FILE__: Full path and file name of the file

  • __DIR__: The directory where the file is located

  • __FUNCTION__: Function name

  • __METHOD__: The method name of the class

  • __NAMESPACE__: The name of the current namespace

  • Object-oriented

    Classes are defined using the class keyword followed by the class name

Variables and variables can be defined within a pair of braces ({}) after the class name Method
  • Variables of the class are declared using var. Variables can also be initialized with values.
  • Function definition is similar to the definition of the PHP function, but can only be passed This class and its instantiated objects access
  • Constructor
  • function __construct($arg1, $arg2, ...)
  • , mainly used to initialize objects

  • Destructor

    function __destruct(), called at the end of the object’s life cycle, can destroy variables

  • Inheritance

    extends, PHP does not support multiple inheritance

  • Method rewriting, subclasses can rewrite parent class methods to meet needs

    Yes Access control of properties or methods:
  • public
  • ,

    protected

    ,
  • private
  • Interfaceinterface

  • Constants are defined with

    const, no need for $

  • ##Abstract class
  • Attributes or methods declared as static can be accessed directly without instantiating the class

  • The parent class method is declared final and cannot be overridden or inherited by subclasses

  • Subclass calls parent class constructor method

    parent::__construct()

The above is the detailed content of What beginners should know about PHP. For more information, please follow other related articles on the PHP Chinese website!

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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles