What beginners should know about PHP
Start and end tags
Two commonly used ones:
<?php ?>
,<script language="php"> </script>
- ##Short tag:
?>
, you need to open the short_open_tag command of the php.ini file
- ASP style tag:
<% %>
, you need to open the asp_tags directive of the php.ini file
##php data type (9 Kinds)
- Four scalar types
- integer
- float
- string
- object
- callable
- ##resource
-
NULL (no type)
- Pseudo-type
- mixed )
number (number type)
callback (callback type, also called callable)
array|object
void
- ##pseudovariable$...
- Type detection function (is_type), eg:
is_string($str)
##Super global variable
$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
- Set constants
define(const_name, const_value, boolean)
- 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
__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 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 Interface
interface- 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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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

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

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

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

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

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