What are the best practices for including a standard include file in PHP projects for easier management?

When working on PHP projects, it is best practice to include a standard include file that contains commonly used functions, constants, and configurations. This helps in easier management and maintenance of the project as it centralizes all the necessary includes in one place. By including this file in every script, you can ensure consistency and avoid redundancy.

// include.php

// Define constants
define('DB_HOST', 'localhost');
define('DB_USER', 'username');
define('DB_PASS', 'password');
define('DB_NAME', 'database');

// Include commonly used functions
include 'functions.php';
```

To include the standard include file in your PHP scripts, simply add the following line at the top of each file:

```php
<?php
include 'include.php';