Skip to content

bufferhead-code/nextjs-use-php

Repository files navigation

Next.js use php

Note

Check out solidtime - The modern Open Source Time-Tracker at solidtime.io

Use PHP right inside of your Next.js project. Just like use server (not really).

You can watch how i made it here

Youtube Video about how this project was made

You can use it in React Server Components just like this:

return (
    <button
        formAction={async () => {
            'use php'
            (new PDO('mysql:host=localhost:3306;dbname=public', 'root', 'root'))
                ->prepare("INSERT INTO Bookmarks (slug) VALUES (?)")
                ->execute(array('new'));
            }}>
        Insert Bookmark
    </button>
)

And if you want to it can even work with React Client Components

// actions.js
'use server'

export async function phpHelloWorld() {
    'use php'
    print "Hello from PHP";
}
// page.tsx
import {phpHelloWorld} from "../actions";

Yes this actually works. Trust me I wish it wouldn't too.

Build

You can build the implementation by

npm run build
npm run start

Open http://localhost:3000 with your browser to see the result.

If you want to try out the Database Example, you can use the docker-compose file provided in the repository. after docker-compose up -d you need to create the database and table you want to insert into manually.

Roadmap (Things that should be fixed but realistically it will never happen)

  • There is a probably a way to fix that nasty preprocess step with SWC Plugins which are still in Beta with Next.js and also I think they will switch builder anyways soon so what's the point really? But hey if anyone wants to do it feel free.
  • I guess there is some hacky way to make props binding possible.

Credits

Check out the original implementations by elnardu for C and Rust:

Disclaimer

I hope I don't have to say this but: If you even in the slightest consider to use this in any application at all you are an absolute madperson and and should be locked out of the internet for the rest of your life, I hope you find some other fun activity, maybe gardening or woodwork.

Self-Promo

If you enjoyed this project and want to see more silly web development projects, you can follow me on Twitter, Bluesky and Youtube.

About

Use PHP code right within your React / Next.js App. With "use php";

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •