What are the best practices for naming PHP files to ensure cross-language compatibility?

When naming PHP files to ensure cross-language compatibility, it is best to use lowercase letters, avoid spaces or special characters, and use underscores to separate words. This ensures that the file names are easily readable and compatible with different operating systems and programming languages.

// Example of a properly named PHP file for cross-language compatibility
// File name: my_php_file.php