PHP beherrschen: Typhinweistechniken

Mary-Kate Olsen
Freigeben: 2024-10-05 06:17:30
Original
889 Leute haben es durchsucht

Mastering PHP: Type Hinting techniques
Photo by ???? ??? on Unsplash

Type hinting is considered by some to be the holy grail of features. One that all programming languages must have. PHP for the longest time didn’t have such a system but has now been adopted widely by most developers.

That said, PHP’s type system doesn’t go as far as other languages. Many implement what are known as Generics. This is the ability to enforce a type among structures and Collections. For instance, in Java we can specify that Arrays must only contain items of a certain type, for example, an Array of Strings.

Maybe someday we’ll have this functionality in PHP as well, but until then we can actually solve this with a few different techniques. For a lack of a better description, I refer to these as Soft Type hints and Runtime hints.

Type Hints

The first and most obvious type hints are the ones introduced in PHP 7 and are still being added to PHP. Type-hinted constants were only added in PHP 8.3.

Type hints are useful to help convey what needs to be passed to a method or function as a parameter or what that method will return. Type hints are going to affect the signatures of any classes they use them with as extending a class with type hints already established will mean they can’t be overridden.

An example of a class that makes full use of types would be:


<?php

class Foo
{
    public function bar(array $strings): \Closure
    {
       return function (string $string) use ($strings): bool {
           return in_array($string, $strings);
       };
    }
}


Nach dem Login kopieren

There are, of course, limitations in our type hints because as previously mentioned, we can’t conform an array to be all of the same type and instead we must just use array . We also can’t constrain numbers to being only positive or within a certain range.

Another one can be Closures as there’s no way to describe anonymous functions within PHP’s native types. Instead, we must either use \Closure or callable . Often callable isn’t allowed to be used as a type as well.

Luckily, there’s still a way to describe these more complicated scenarios with type hints.

Soft Type Hints

Our next kinds of type hints are supplied via PHPDocs. While native types will throw exceptions during run time if a method is passed or returns the wrong type, PHPDoc type hints have no effect on the runtime of the application.

Instead, soft type hints help us purely when we’re using an IDE such as VS Code or PHPStorm, which will detect those types for us. The other use case is with static analysis tools like PHPStan and subsequently Rector.

The biggest advantage of using soft types is that it allows you to describe with more precision the type of any parameters, properties, etc. For instance, we can take the previous class and make it easier to understand the arrays or closures used.


<?php

class Foo
{
    /**
     * @param string[] $strings
     * @return \Closure(string): bool
     */
    public function bar(array $strings): \Closure
    {
       return function (string $string) use ($strings): bool {
           return in_array($string, $strings);
       };
    }
}


Nach dem Login kopieren

The best way to make sure all your type usage is correct is to install PHPStan. From there you’ll likely need to use at least level 5. This can then be enforced through continuous integration steps that check the type hinting is correct.

There’s actually a list you can use if you want to use the correct soft type hint. Even better, there’s a PHPStan tool you can use to test if all the type hinting it correct per PHPStan if you’re unsure and want to run a quick test.

Runtime Hints

Our next way of supporting types is to use runtime hints. What this actually means is executing our own code to check the types from parameters. For instance, we can check if an array only contains a particular type of object. If it doesn’t, then we throw an InvalidArgumentException.


<?php

/**
 * @param string[] $foo
 */
function bar(array $foo) {
    foreach ($foo as $string) {
        if (! is_string($string)) {
            throw new \InvalidArgumentException('foo contains non-string value');
        }
    }

    // rest of the code
}


Nach dem Login kopieren

By the way, this technique is sometimes referred to as defensive programming. Looking at the code example, this is pretty cumbersome. It’s a lot of code just to simply check if an array is correct. That’s why we often resort to a library instead, in this case webmozart/assert .


composer require webmozart/assert


Nach dem Login kopieren

Now with this package installed we can shorten this down to a simple one-liner.


<?php

use Webmozart\Assert;

/**
 * @param string[] $foo
 */
function bar(array $foo) {
    Assert::allStrings($foo);
}


Nach dem Login kopieren

One of the great things about this library is if you add the Assert extension to PHPStan, this will help your type coverage when the code is analysed.

Abschluss

Zusammenfassend lässt sich sagen, dass die Beherrschung von Type Hinting in PHP eine wesentliche Fähigkeit für Entwickler ist, die sauberen, wartbaren und zuverlässigen Code schreiben möchten. Während dem PHP-Typsystem immer noch einige Funktionen fehlen, die in anderen Sprachen zu finden sind, wie z. B. Generika, stehen mehrere Strategien zur Verfügung, um eine strengere Typisierung durchzusetzen – sei es durch native Typhinweise, PHPDoc-Annotationen oder Laufzeitprüfungen. Durch den Einsatz von Tools wie PHPStan und Bibliotheken wie Assert können Sie die Typsicherheit auch in komplexen Szenarien gewährleisten. Durch die Integration dieser Techniken in Ihren Entwicklungsworkflow sind Sie besser gerüstet, um mit der dynamischen Natur von PHP souverän und präzise umzugehen.

Ich bin Peter Fox, ein Softwareentwickler in Großbritannien, der mit Laravel arbeitet. Vielen Dank, dass Sie meinen Artikel gelesen haben. Unter https://articles.peterfox.me gibt es noch viel mehr zu lesen. Ich bin jetzt auch auf GitHub sponserbar. Wenn Sie mich ermutigen möchten, weitere Artikel wie diesen zu schreiben, denken Sie bitte über eine kleine einmalige Spende nach.

Das obige ist der detaillierte Inhalt vonPHP beherrschen: Typhinweistechniken. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Quelle:dev.to
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Artikel des Autors
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!