final is easy to understand literally in English, and translated into Chinese it means "final". In PHP object-oriented programming, the application of final mainly has two functions:
1. Classes modified with final cannot be inherited
<?php final class Person { public $name; function