Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
942 views
in Technique[技术] by (71.8m points)

oop - Is it possible to write strictly typed PHP code?

For example, is it possible to write code like this:

int $x = 6;
str $y = "hello world";
bool $z = false;
MyObject $foo = new MyObject();

And is it possible to define functions like this:

public int function getBalance()
{
   return 555; //Or any numeric value
}
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

In PHP 7 are implemented "Scalar Type Declarations", e.g.:

public function getBalance(): int {
    return 555;
}

You need to declare, that you will use strict types:

<?php
    declare(strict_types=1);

    function sum(int $a, int $b): int {
        return $a + $b;
    }

    sum(1, 2);
?>

More information: https://wiki.php.net/rfc/scalar_type_hints_v5


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...