This is how to import (include) a CSS file into a .php file using PHP code.
Example of including a css file with name 'style.css' that's in the parent directory.
<style>
<?php include 'style.css'; ?>
</style>
Example of including a css file with name 'main.css' that's in a folder named 'build' in the parent directory.
<style>
<?php include 'build/style.css'; ?>
</style>