Skip to content
Advertisement

What is the purpose of the question marks before type declaration in PHP7 (?string or ?int)?

Could you please tell me how is this called? ?string and string

Usage example:

JavaScript

I wanted to learn something about them but I cannot find them in PHP documentation nor in google. What is difference between them?

Advertisement

Answer

It’s called a Nullable type, introduced in PHP 7.1.

You could pass a NULL value if there is a Nullable type (with ?) parameter, or a value of the same type.

Parameters :

JavaScript

Return type :

The return type of a function can also be a nullable type, and allows to return null or the specified type.

JavaScript

Property type (as of PHP 7.4) :

The type of a property can be a nullable type.

JavaScript

See also :

Nullable union types (as of PHP 8.0)

As of PHP 8, ?T notation is considered a shorthand for the common case of T|null

JavaScript

Error

In case of the running PHP version is lower than PHP 7.1, a syntax error is thrown:

syntax error, unexpected ‘?’, expecting variable (T_VARIABLE)

The ? operator should be removed.

PHP 7.1+

JavaScript

PHP 7.0 or lower

JavaScript

References

As of PHP 7.1 :

Type declarations for parameters and return values can now be marked as nullable by prefixing the type name with a question mark. This signifies that as well as the specified type, NULL can be passed as an argument, or returned as a value, respectively.

As of PHP 7.4 : Class properties type declarations.

As of PHP 8.0 : Nullable Union Type

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement