PHP code example of angel-project / framework
1. Go to this page and download the library: Download angel-project/framework library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
angel-project / framework example snippets
build::get("angel/[input]", function($input){
echo "angel".$input."!";
});
Nginx
location / {
index index.php index.html;
try_files $uri/ $uri /index.php?$query_string;
}
ApacheConf
<Directory "/your/web/site/dir">
RewriteEngine on
RewriteRule "(.*)" "index.php?$1" [PT,QSA]
</Directory>