Might sound biased since I prefer Python myself, years after PHP development. But Python is used in programming Courses around the World for beginners for a reason. The syntax is much easier to learn rather than the curly-braces driven PHP.
Examples:
Python
print('hello world')
PHP
<?php
echo('hello world')
?>