Skip to content

Instantly share code, notes, and snippets.

@namankumar80510
namankumar80510 / Caddyfile
Created April 29, 2024 04:58 — forked from jpoehls/Caddyfile
Caddyfile PHP on Windows
# http://caddyserver.com/download
http://localhost:8080 {
startup php.cmd &
fastcgi / 127.0.0.1:9123 php
}
@namankumar80510
namankumar80510 / new-lang-code-file.php
Created March 31, 2024 12:13 — forked from RaVbaker/new-lang-code-file.php
How to create new programming language in PHP?
// This is written in pseudo language
class Foo {
def bar() {
ret "it Works!";
}
}
$f = Foo.new();
print $f.bar();