Home  >  Article  >  Backend Development  >  Introduction to the type hinting function in PHP, typehinting_PHP tutorial

Introduction to the type hinting function in PHP, typehinting_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 09:48:03914browse

Introduction to the type hinting function in PHP, typehinting

Overview

Starting from PHP5, we can use type hints to specify the parameter types that the function receives when defining the function. If the parameter type is specified when defining a function, then when we call the function, if the type of the actual parameter does not match the specified type, PHP will generate a fatal error (Catchable fatal error).

Class name and array

When defining functions, PHP only supports two type declarations: class names and arrays. Class name table name The actual parameter received by this parameter is the object instantiated by the corresponding class, and the array indicates that the actual parameter received is an array type. Here is an example:
Copy code The code is as follows:
function demo(array $options){
var_dump($options);
}

When defining the demo() function, the parameter type received by the function is specified as an array. If when we call a function, the parameter passed in is not an array type, such as a call like the following:
Copy code The code is as follows:
$options='options';
demo($options);

Then the following error will be generated:
Copy code The code is as follows:
Catchable fatal error: Argument 1 passed to demo() must be of the type array, string given,

You can use null as the default parameter

Attention

One thing that needs special attention is that PHP only supports two types of type declarations. Any other scalar type declarations are not supported. For example, the following code will generate an error:
Copy code The code is as follows:
function demo(string $str){
}
$str="hello";
demo($str)

When we run the above code, string will be treated as a class name, so the following error will be reported:
Catchable fatal error: Argument 1 passed to demo() must be an instance of string, string given,

Summary

Type declaration is also an advancement in object-oriented PHP, especially when it comes to catching exceptions of a specified type.
Using type declarations can also increase the readability of your code.
However, since PHP is a weakly typed language, using type declarations is contrary to the original intention of PHP design.
Whether to use type declarations or not is a matter of opinion for everyone, but I’m a noob :).

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1024914.htmlTechArticleIntroduction to type hinting function in PHP, typehinting overview Starting from PHP5, we can use type hinting to Specifies the parameter types that the function receives when defining the function. If you are deciding...
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