search
HomeBackend DevelopmentPHP TutorialThree Charming Points of PHP Programming Syntax_PHP Tutorial

I found that many PHP programmers, especially those who have not studied for a long time, do not know the essence of PHP. How did Perl become famous in the business world back then? Its powerful regular expressions. And what about PHP? It is a language developed under Unix. Of course, it inherits many features of Perl and has the advantages of C. It is fast, concise and clear, especially for C programmers. PHP is their favorite. I just love "PHP" deeply (I have even forgotten my girlfriend :)). Here, I want to write about PHP variables and array application skills, PHP regular expressions, and PHP template applications. I will write about the complete combination of PHP and COM, and PHP and XML when I have time in the future.

Application skills of variables and arrays

Array functions that are rarely used by many people. foreach, list, each. Just give a few examples and you should be able to figure it out. Example:

<?php
$data = array('a' => 'data1', 'b' => 'data2', 'c' => 'data3');  
while(list($subscript, $value) = each($data))  
{  
   echo "$subscript => $value :: ";  
   echo "$subscript => $value <br />";  
}
reset($data);  
foreach($data as $subscript => $value)  
{  
   echo "$subscript => $value :: ";  
   echo "$subscript => $value <br />";  
}
?>

Variables of functions, variables of variables, "pointers" of variables:

<?php
//变量的变量
$var = "this is a var";
$varname = "var";
echo $$varname;
//函数的变量
function fun1($str) {
	echo $str;
}
$funname = "fun1";
$funname("This is a function !");
?>

The "pointer" to the variable. This pointer is enclosed in double quotes, indicating that it is not a real pointer.

<?php
function($a) {
	$a ++;
}
$c = 0;
function($c);
echo $c; //$c仍为0
function(&$a) {
	$a ++;
}
$c = 0;
echo $c; //$c为1
?>  

The reason why it is called "pointer" is because it has the same function as the pointer in C language. But this is not a real pointer, it can only be understood in this way.

Regular expression

Regular expressions are a very big topic, and Perl’s regular expressions are famous for their power. PHP is not weak either. It inherits Perl's regular expression rules and has its own set of rules. Here we only talk about PHP's own regular expressions.

Regular expressions are the most basic elements. Simply put, it is a set of rules used to determine whether other elements conform to its own rules, or whether they have the same characteristic description.

The starting symbol of the regular expression: ^ and the ending symbol $. The elements between these two symbols are matched. For example, if you want to check whether a phone number is for calling Beijing, the regular expression would be "^010$". As long as the first three digits of the area code are 010, it is Beijing's number, and the following phone numbers are not needed. Then, use the regular expression matching function ereg to judge, for example:

<?php
$pattern = "^010$";
$phone = "01080718828";
if(ereg($pattern, $phone))
echo "打往北京的号";
else
echo "不是打往北京的号";
?>

This is a regular expression. Phone numbers in Beijing are all 8 digits, so I want to know if the number is correct? What if he pressed the 9-digit number? If judged right or wrong? This requires the use of regular expression character clusters. Then the regular expression in the above example should be written like this: ^010[0-9]{8}$, and it can be judged at the same time whether the number conforms to the rules. Regular expressions have many applications. For example, when posting in LBB and VBB forums, the so-called analysis of VBB codes and LBB codes are all done using regular expressions.

Template

If you know the function of regular expressions, you can know the template. What is a template? Give me an example? Generally, when a background program is used to write a web page, the program code is inserted into the web page. Such as PHP. This is a mix of HTML and PHP. The advantage of this is that the reading speed is fast, but the disadvantage is that if everyone works together to build the website, non-programmers will not change the website.

With templates, you can achieve the most rational division of labor. The artist only writes the page, the program only writes the background, and then puts it all together. Excellent Jsp provides the function of custom tags and completes the template function well. And how does mainstream PHP do it? This is done using regular expressions. You can download a PHPLIB from the Internet. There is a source code file of template.inc in the PHP directory, which is a class that uses PHP to implement template application.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/752549.htmlTechArticleI found that many PHP programmers, especially those who have not studied for a long time, do not know the essence of PHP. How did Perl become famous in the business world back then? Its powerful regular expressions. And what about PHP? He is...
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
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.

PHP Email Security: Best Practices for Sending EmailsPHP Email Security: Best Practices for Sending EmailsMay 08, 2025 am 12:16 AM

ThebestpracticesforsendingemailssecurelyinPHPinclude:1)UsingsecureconfigurationswithSMTPandSTARTTLSencryption,2)Validatingandsanitizinginputstopreventinjectionattacks,3)EncryptingsensitivedatawithinemailsusingOpenSSL,4)Properlyhandlingemailheaderstoa

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

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

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.