Table of Contents
PHP programming knowledge that is often easily forgotten, PHP programming knowledge
Is it easy to get started with PHP programming? For someone like me who knows nothing about programming, how can I quickly get started and build a website?
Good jobs can be found in php programming
Home Backend Development PHP Tutorial PHP programming knowledge that is often easily forgotten, PHP programming knowledge_PHP tutorial

PHP programming knowledge that is often easily forgotten, PHP programming knowledge_PHP tutorial

Jul 13, 2016 am 10:16 AM
Introduction to programming

PHP programming knowledge that is often easily forgotten, PHP programming knowledge

PHP programming knowledge that is often easily forgotten

1. The difference between echo and print

The functions of echo and print in PHP are basically the same (output), but there are still subtle differences between the two. There is no return value after echo output, but print has a return value, and it returns false when its execution fails. Therefore, it can be used as a normal function. For example, after executing the following code, the value of variable $r will be 1.

 $r = print "Hello World";

This means that print can be used in some complex expressions, but echo cannot. However, because the echo statement does not require any value to be returned, the echo statement in the code runs slightly faster than the print statement.

 2.The difference between include and require

The functions of include() and require() are basically the same (include), but there are some differences in usage. include() is a conditional inclusion function, while require() is an unconditional inclusion function. For example, in the following code, if the variable $a is true, the file a.php will be included:

 if($a){

include("a.php");

 }

And require() is different from include(). No matter what value $a takes, the following code will include the file a.php into the file:

 if($a){

require("a.php");

 }

In terms of error handling, use the include statement. If an include error occurs, the program will skip the include statement. Although the error message will be displayed, the program will continue to execute! But require will give you a fatal error.

Of course, we can also understand Qifen literally: require means a very strong request or requirement.

 3.require_once() and include_once() statements

I digress, because they look similar. Simple require_once() and include_once() statements correspond to require() and include() statements respectively. The require_once() and include_once() statements are mainly used when multiple files need to be included, which can effectively avoid errors in repeated definitions of functions or variables caused by including the same piece of code.

4. The difference between empty string ('') and NULL

Empty strings and NULL in PHP are stored with a value of 0, but their types are different. You can try echo gettype(''); and echo gettype(NULL); and you will find that they print out are string and NULL respectively. Of course, 0 is also easy to confuse. You can try echo gettype(0); if you print the type, you will find that the type of 0 is integer (integer). You can see string (''), NULL and 0 are "equal" but not of equal type.

5. The difference between isset and empty

We can understand from the literal meaning: empty is to determine whether a variable is "empty", while isset is to determine whether a variable has been set. But there is one thing you must pay attention to here: when the value of a variable is 0, empty considers the variable to be equal to empty, which is equivalent to no setting. For example, when we detect the $id variable, when $id=0, we use empty and isset to detect whether the variable $id has been configured. Both will return different values: empty thinks it is not configured, and isset can get the value of $id. , see the example below:

$id=0;

Empty($id)?print "I am empty":print "I am $id."; //Result: I am empty

 !isset($id)?print "I am empty":print "I am $id.";//Result: I am 0

6. The difference between == (equal) and === (constant)

Looking back at the fourth difference between empty string ("") and NULL above, let's look at another example:

'' == NULL;

'' === NULL;

After running it, you will find that the first one is true, and the second one is false! It can be seen that == only compares whether the values ​​are equal, while === not only compares the values, but also compares the types, which is more strict.

7. The difference between self :: and this->

When accessing member variables or methods in a PHP class, if the referenced variable or method is declared as const (defining constant) or static (declaring static), then you must use the operator::, otherwise if it is referenced The variable or method is not declared as const or static, then the operator -> must be used.

In addition, if you access a const or static variable or method from within the class, you must use self-reference. On the contrary, if you access a non-const or static variable or method from within the class, you must use self-reference. $this.

 8. The difference between strstr() and strpos()

 stristr() is case-insensitive strstr() is case-sensitive

Function finds the first occurrence of a string within another string.

If successful, returns the rest of the string (from the point of the match). If the string is not found, returns false.

 stripos() is case-insensitive strpos() is case-sensitive

 The function returns the position of the first occurrence of a string in another string.

If the string is not found, return false.

Tests have proven that if you just search to determine whether it exists, the execution efficiency of strpos() is greater than strstr()

 9.HTTP_HOST and SERVER_NAME in PHP

Similarities:

When the following three conditions are met, both will output the same information.

 1. The server is port 80

2. ServerName in apache’s conf is set correctly

 3. HTTP/1.1 protocol specification

Differences:

 1. Usually:

 _SERVER["HTTP_HOST"] Under the HTTP/1.1 protocol specification, information will be output according to the client's HTTP request.

 _SERVER["SERVER_NAME"] By default, the ServerName value in the apache configuration file httpd.conf is directly output.

 2. When the server is not port 80:

 _SERVER["HTTP_HOST"] will output the port number, for example: mimiz.cn:8080

 _SERVER["SERVER_NAME"] will directly output the ServerName value

So in this case, it can be understood as: HTTP_HOST = SERVER_NAME : SERVER_PORT

3. When the ServerName in the configuration file httpd.conf is inconsistent with the domain name requested by HTTP/1.0:

httpd.conf configuration is as follows:

ServerName pprar.com

ServerAlias ​​http://www.pprar.com

Client access domain name http://www.pprar.com

 _SERVER["HTTP_HOST"] output http://www.pprar.com

 _SERVER["SERVER_NAME"] output pprar.com

Therefore, in actual programs, you should try to use _SERVER["HTTP_HOST"], which is safer and more reliable.

If you are using port mapping and accessing from the intranet, it is better to use "$_SERVER['HTTP_X_FORWARDED_HOST']".

Is it easy to get started with PHP programming? For someone like me who knows nothing about programming, how can I quickly get started and build a website?

For those with basic knowledge (for example, many people have learned C in college) PHP is indeed not difficult
The purpose of PHP when it was originally developed is to quickly develop a bunch of frameworks unlike Java
But for people like you I have never been exposed to high-level programming languages ​​
The difficult part is getting started. After all, there is a huge difference between front-end languages ​​like HTML and CSS and high-level languages ​​
It is recommended that if you have the conditions, you can find friends around you who can teach you the basics. Programming ideas
Basic knowledge of variables, loops, arrays, objects, functions, etc.
Then buy an introduction to PHP or download one online to see if you get used to it. Thank you for the simple code
After you feel that the basic knowledge is almost the same Download some standard source code to see how other people write the code and go to the technical forum
Then you can start writing your own website and that's it.

The more progressive development is what will happen in the future and what will be the target and the design. Models and frameworks are all used after you are familiar with the basics
and will be used for further development. Don’t worry about it at first

Good jobs can be found in php programming

That won’t work for you. You need to use php tags, or process it directly in the php code. Let me give you an example:
$result = mysql_query("SELECT * FROM treename WHERE treeID=1"); //This sql syntax is incorrect
$path = trim($result[1]) ;
$name = trim($result[2]);
$ext = trim($result[3]);
$picSrc = ""; //This is a bit redundant for you, Just do the following
$picSrc =$picSrc.$path.$name.$ext;
echo"";
?>

Second type:

$result = mysql_query("SELECT * FROM treename WHERE treeID=1"); //This sql syntax is incorrect
$path = trim($result[1]);
$name = trim($result[2]);
$ext = trim($result[3]);
$picSrc = ""; //This is a bit redundant for you, just go ahead The following will do
$picSrc =$picSrc.$path.$name.$ext;
?>


I hope it can be an inspiration to you! !

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/896046.htmlTechArticlePHP programming knowledge that is often easily forgotten, PHP programming knowledge PHP knowledge that is often easily remembered 1.echo and print The difference between echo and print in PHP is basically the same (output), but between the two...
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
4 weeks 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)

11 Best PHP URL Shortener Scripts (Free and Premium) 11 Best PHP URL Shortener Scripts (Free and Premium) Mar 03, 2025 am 10:49 AM

Long URLs, often cluttered with keywords and tracking parameters, can deter visitors. A URL shortening script offers a solution, creating concise links ideal for social media and other platforms. These scripts are valuable for individual websites a

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

Build a React App With a Laravel Back End: Part 2, React Build a React App With a Laravel Back End: Part 2, React Mar 04, 2025 am 09:33 AM

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Announcement of 2025 PHP Situation Survey Announcement of 2025 PHP Situation Survey Mar 03, 2025 pm 04:20 PM

The 2025 PHP Landscape Survey investigates current PHP development trends. It explores framework usage, deployment methods, and challenges, aiming to provide insights for developers and businesses. The survey anticipates growth in modern PHP versio

Notifications in Laravel Notifications in Laravel Mar 04, 2025 am 09:22 AM

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

See all articles