Interpretation of return usage in PHP
In most programming languages, the return keyword can return the execution result of a function. The usage of return in PHP is also similar, so it is suitable for beginners. Generally speaking, mastering the usage of return in PHP is also the beginning of learning PHP.
#First of all, it means return; return() is a language structure rather than a function. Parentheses are only needed when the parameters contain expressions. Enclose it. Parentheses are usually not used when returning a variable, which can reduce the burden on PHP.
Basic usage:
a), return expression // Return an expression result
b), return(expr) // Function expression
c), return // Return directly, or return a null value
Note: It is best not to use return($val).
1. If return is executed, the content after the return statement will not be executed;
function add($a,$b){ return $a+$b; return $a*$b; } $c = add(5,3);//得到的$c值可以用在程序的其他地方! echo $c;
Output result: 8, only $a $b is executed, $a*$b is not executed.
2.return
It can be a function return value or a null value, depending on the specific usage, for example:
##
function test($a){ if($a>10){ return "a>10"; }else{ return "a<10"; } $b=45; $c=$b-$a; echo $c; }
In this example, when you call this function and give any number, it will return a String, if given a number 9, output the string "a<10" and the code:
# 将永远不会被执行。 3、关于return的调用。 a.php如下: b.php如下: 输出结果: ba。 在b.php中的return之后的语句不再执行,a.php中include("b.php")之后的语句依然执行。 a.php如下: b.php如下: 输出结果:b。 4、return的一个重要作用:返回值 例子1: 例子2: 输出结果:例子1正常输出,例子2输出为空。为什么呢?因为如果不在函数rest()里面用return返回值,则函数里面只有过程,而没有结果给rest(),调用该函数的时候当然不会有值输出。当然,我们也可将print_r($b)写进test()里面,直接在函数里打印,但很多时候,我们都会在函数外面调用操作,所以要用return返回一个值给外面。 感谢大家的阅读,希望大家受益良多。 This article is reproduced from: https://blog.csdn.net/fjnjxr/article/details/52512722 Recommended tutorial: "php tutorial" The above is the detailed content of Interpretation of return usage in PHP. For more information, please follow other related articles on the PHP Chinese website!$b=45;
$c=$b-$a;
echo $c;
<?php
include("b.php");
echo "a";
?>
<?php
echo "b";
return;
echo "b";
?>
<?php
include("b.php");
echo "a";
?>
<?php
echo "b";
exit; // 结束整个当前脚本
?>
function test(){
$a=array(1,2);
return $a;
}
$b=test();
print_r($b);
function test(){
$a=array(1,2);
}
$b=test();
print_r($b);

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

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

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

Alipay PHP...

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...
