


Summarize the practical but easily overlooked knowledge in PHP (recommended)
This article mainly summarizes some useful little knowledge in PHP that is found in daily work but is easily ignored by people, such as whether the PHP function determines whether the function exists, the variable function of the PHP function, etc. Friends who need it, please follow the editor to take a look at the detailed introduction.
This article mainly summarizes some useful knowledge in PHP and shares it for your reference and learning. Let’s take a look at the detailed introduction:
1. PHP functions Determine whether the function exists
When we create a custom function and understand the usage of variable functions, in order to ensure that the function called by the program exists, we often use function_exists to determine whether the function exists. . The same method_exists can be used to detect whether a class method exists.
function func() { } if (function_exists('func')){ echo 'exists'; }
Whether the class is defined can use class_exists
class MyClass{ } // 使用前检查类是否存在 if (class_exists('MyClass')) { $myclass = new MyClass(); }
There is in PHP There are many such checking methods, such as whether the file exists file_exists, etc.
$filename = 'test.txt'; if (!file_exists($filename)) { echo $filename . ' not exists.'; }
##2. Variable functions of PHP functions
The so-called variable function refers to calling a function through the value of a variable. Because the value of a variable is variable, different functions can be called by changing the value of a variable. It is often used in callback functions, function lists, or to call different functions based on dynamic parameters. The method of calling a variable function is to add parentheses to the variable name.function name() { echo 'jobs'; } $func = 'name'; $func(); //调用可变函数
class book { function getName() { return 'bookname'; } } $func = 'getName'; $book = new book(); $book->$func();
$func = 'getSpeed'; $className = 'Car'; echo $className::$func(); //动态调用静态方法
class Car { private static $speed = 10; public static function getSpeed() { return self::$speed; } public static function speedUp() { return self::$speed+=10; } } class BigCar extends Car { public static function start() { parent::speedUp(); } } BigCar::start(); echo BigCar::getSpeed();
3. Advanced features of PHP classes and objects
Object comparison, when the same class When all attributes of two instances are equal, you can use the comparison operator == to judge. When you need to judge whether two variables are references to the same object, you can use the congruence operator === to judge.class Car { } $a = new Car(); $b = new Car(); if ($a == $b) echo '=='; //true if ($a === $b) echo '==='; //false
class Car { public $name = 'car'; public function __clone() { $obj = new Car(); $obj->name = $this->name; } } $a = new Car(); $a->name = 'new car'; $b = clone $a; var_dump($b);
class Car { public $name = 'car'; } $a = new Car(); $str = serialize($a); //对象序列化成字符串 echo $str.'<br>'; $b = unserialize($str); //反序列化为对象 var_dump($b);
4. Get the length of the string in PHP string
There is a magical function in php, You can directly get the length of the string. This function is strlen().$str = 'hello'; $len = strlen($str); echo $len;//输出结果是5
$str = "我爱你"; echo mb_strlen($str,"UTF8");//结果:3,此处的UTF8表示中文编码是UTF8格式,中文一般采用UTF8编码
5. PHP string formatting string
If there is a string $str = ' 99.9';, how to make this string become 99.90? We need to use PHP's formatted string function sprintf()Function description: sprintf (format, string to be converted)Return: Formatted The string$str = '99.9'; $result = sprintf('%01.2f', $str); echo $result;//结果显示99.90
6. PHP string escaping
php string escape functionaddslashes()
返回值:一个经过转义后的字符串
$str = "what's your name?"; echo addslashes($str);//输出:what\'s your name?
The above is the detailed content of Summarize the practical but easily overlooked knowledge in PHP (recommended). 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

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

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
