How can namespaces be utilized when including functions in PHP scripts?

Namespaces in PHP can be utilized to organize and group related functions, classes, and variables. By using namespaces, you can avoid naming conflicts and make your code more modular and maintainable. To include functions from a namespace in your PHP script, you need to use the `use` keyword followed by the namespace and function name.

<?php

// Define a namespace for your functions
namespace MyNamespace;

// Define a function within the namespace
function myFunction() {
    echo "Hello from myFunction!";
}

// Include the function using the namespace
use MyNamespace\myFunction;

// Call the function
myFunction();