search
HomeBackend DevelopmentPHP TutorialSummarize 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(); //调用可变函数

Variable functions can also be used in object method calls

class book {
 function getName() {
  return 'bookname';
 }
}
$func = 'getName';
$book = new book();
$book->$func();

Static methods can also be called dynamically through variables

$func = 'getSpeed';
$className = 'Car';
echo $className::$func(); //动态调用静态方法

In static methods, the $this pseudo variable is not allowed to be used. You can use self, parent, static to call static methods and properties internally.

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

Object copying, in some special cases, you can copy an object through the keyword clone, then the __clone method will be called, through this magic Method to set the value of a property.

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);

Object serialization, you can serialize the object into a string through the serialize method, which is used to store or transfer data, and then unserialize it when needed. The string is deserialized into an object for use.

class Car {
 public $name = 'car';
}
$a = new Car();
$str = serialize($a); //对象序列化成字符串
echo $str.&#39;<br>&#39;;
$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 = &#39;hello&#39;;
$len = strlen($str);
echo $len;//输出结果是5

The strlen function is very good at calculating English characters, but if there are Chinese characters, what should I do if I want to calculate the length?

You can use the mb_strlen() function to get the Chinese length in a string.

$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 = &#39;99.9&#39;;
$result = sprintf(&#39;%01.2f&#39;, $str);
echo $result;//结果显示99.90

Explain, what does the format

%01.2f in the above example mean?

1. This % symbol means the beginning. Writing it at the front means that the specified format has started. That is, the "start character", until the "conversion character" appears, the format ends.


2. What follows the % symbol is 0, which is a "fill-in-the-blank character", which means that if the position is empty, it will be filled with 0.


3. What follows 0 is 1. This 1 stipulates that all string occupancies must have more than 1 digit (the decimal point is also a digit).


If you change 1 to 6, the value of $result will be 099.90


Because there must be two digits after the decimal point, and 99.90 has a total of 5 placeholders. Now we need 6 placeholders, so fill them with 0s.


4. The .2 (point 2) after %01 is easy to understand. It means that the number after the decimal point must occupy 2 digits. If the value of $str is 9.234 at this time, the value of $result will be 9.23.


Why is 4 missing? Because after the decimal point, according to the above regulations, it must and can only occupy 2 digits. However, the value of $str occupies 3 digits after the decimal point, so the mantissa 4 is removed, leaving only 23.


5. Finally, end with f "conversion character".

6. PHP string escaping

php string escape function

addslashes()

Function description: Used to add escape characters to special characters and return a string

返回值:一个经过转义后的字符串

$str = "what&#39;s your name?";
echo addslashes($str);//输出:what\&#39;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!

Statement
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
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

See all articles

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software