How can the __DIR__ constant be used to include files from a directory one level higher in PHP?

When including files from a directory one level higher in PHP, you can use the __DIR__ constant along with the "../" notation to navigate up one level in the directory structure. This allows you to specify the correct path to include files located in a parent directory.

<?php
include __DIR__ . '/../filename.php';
?>