You can have small developer time with other technologies too (JavaScript, Go, Elixir etc) and get some additional benefits compared to PHP. Honestly I don't see the reason to use PHP today unless you have to;
Except for speed, PHP has another awesome thing going for it: Statelessness.
You throw some PHP files on a server and have a working web application. As soon as you change a PHP file, the change is in effect on next reload of the page. You might be able to do the same in Python, but everybody in Python world is doing the long running thread approach, so you would be on uncharted territory.
That is way easier to digest than the current ~5x performance penalty for using it.
I would probably not consider PHP anymore if Python was 50% of its speed.
I would never consider anything else than Python or PHP for web projects. Developer time is more precious than CPU time.