What is Phlo
An integrated platform with its own full-stack language that compiles to readable PHP.
Read the docs →.phlo
// you write Phlo
view page($title):
<h1>$title</h1>
// it compiles to a method on a plain PHP class, no magic, no runtime
class app extends obj {
protected function page($title): string {
$_ = [];
$_[] = "<h1>".$title."</h1>";
return implode(lf, $_);
}
}
1
LanguageOwn syntax, compiles 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
