What is Phlo
An integrated platform with its own full-stack language that transpiles to readable PHP.
Read the docs →.phlo
// a route and a view are a page - you write Phlo
route GET => view($this->page, 'Ada')
view page($name):
<h1>Hello, $name</h1>
// it transpiles to a method on a plain PHP class - no magic, no runtime
class app extends obj {
protected function page($name): string {
return "<h1>Hello, ".$name."</h1>";
}
}
1
LanguageOwn syntax, transpiles to readable PHP
2
App platformBackend objects and resources, plus the phlo.js SPA engine
3
Server platformPhlo Realtime, the WhatsApp gateway, mail, FrankenPHP workers
4
Operational platformDashboard for fleet, hosts, domains and databases
