Most voted "inphinit" questions
Inphinit is a simple framework written in PHP for creating routes with regular expression support, working HTTP (cache, requests, responses), DOM, files and folders, debugging, etc. Supports Apache servers, Nginx, IIS and HHVM (Hiphop Virtual Machine)
Learn more…5 questions
Sort by count of
-
9
votes2
answers373
viewsWhat is the purpose of the Model folder of the Inphinit framework?
In the Inphinit micro-framework there is the Model folder inside the folder application, and that’s where the classes are, but I’m very confused about those classes. See a class inside the Model…
-
5
votes1
answer139
viewsWhat is the purpose of the "system" directory of the micro-framework Inphinit?
I intend to use the Inphinit micro-framework on a project of mine, but first of all I need to know more about it. Being so, I created an example project just to familiarize myself with its…
-
3
votes1
answer73
viewsWhat is the purpose of the INPHINIT_START, INPHINIT_ROOT, INPHINIT_PATH and INPHINIT_COMPOSER constants?
I’m studying about the micro-framework Inphinit. And in the index.php file are declared some constants that left me confused regarding their purposes. Code of index.php: define('INPHINIT_START',…
-
3
votes1
answer101
viewsREST in the microframework Inphinit
To experimental functionality REST Inphinit microframework requires a class with 7 functions index create store show edit update destroy In a REST API basically two are required entry points for the…
-
1
votes0
answers41
viewsWhat are "caches" in relation to web applications?
In the Inphinit Framework it is possible to cache HTTP responses, see an example: Route::set('GET', '/hello', function () { $cache = new Cache; if ($cache->cached()) { return; } return…