Static network with PHP

Is it possible to create a web static (like Jekyll) with PHP? This will make the yaml block for the mail file. I was confused how to figure this out.

+4
source share
3 answers

Phrozn looks like a static site generator similar to Jekyll but built into PHP. Hope this will be helpful!

+6
source

Yes, php can generate static websites.

You can use the "Output Buffering" functionality, rendering your pages using PHP, and then saving the output buffer to files.

Some early blogging systems used CakePHP and lithium output buffers to generate page caches.

http://php.net/manual/en/book.outcontrol.php

0
source

Github has a new face - Sculpin.io

0
source

All Articles