Kerangka kerja PHP ditulis dalam c dan dibangun sebagai ekstensi PHP.
Yaf adalah ekstensi PECL, jadi Anda cukup menginstalnya dengan:
$pecl install yaf
$/path/to/phpize
$./configure --with-php-config=/path/to/php-config
$make && make install
Panduan Yaf dapat ditemukan di: http://www.php.net/manual/en/book.yaf.php
efnet.org #php.yaf
Anda dapat menemukan skrip prototipe yang terdokumentasi di sini: https://github.com/elad-yosifon/php-yaf-doc
Tata letak direktori aplikasi klasik:
- .htaccess // Rewrite rules
+ public
| - index.php // Application entry
| + css
| + js
| + img
+ conf
| - application.ini // Configure
- application/
- Bootstrap.php // Bootstrap
+ controllers
- Index.php // Default controller
+ views
|+ index
- index.phtml // View template for default controller
+ library // libraries
+ models // Models
+ plugins // Plugins
Anda harus mengatur DocumentRoot
ke application/public
, sehingga hanya folder publik yang dapat diakses oleh pengguna
index.php
di direktori publik adalah satu-satunya cara masuk aplikasi, Anda harus menulis ulang semua permintaan ke dalamnya (Anda dapat menggunakan .htaccess
di mod Apache+php)
define ( " APPLICATION_PATH " , dirname ( dirname ( __FILE__ )));
$ app = new Yaf_Application ( APPLICATION_PATH . " /conf/application.ini " );
$ app -> bootstrap () //call bootstrap methods defined in Bootstrap.php
-> run ();
#.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* index.php
server {
listen ****;
server_name domain.com;
root document_root;
index index.php index.html index.htm;
if (!-e $request_filename) {
rewrite ^/(.*) /index.php/$1 last;
}
}
$HTTP["host"] =~ "(www.)?domain.com$" {
url.rewrite = (
"^/(.+)/?$" => "/index.php/$1",
)
}
application.ini
adalah file konfigurasi aplikasi
[product]
; CONSTANTS is supported
application.directory = APPLICATION_PATH " /application/ "
Alternatifnya, Anda dapat menggunakan array PHP:
$ config = array (
" application " => array (
" directory " => application_path . " /application/ " ,
),
);
$ app = new yaf_application ( $ config );
. . . .
Di Yaf, pengontrol default diberi nama IndexController
:
class IndexController extends Yaf_Controller_Abstract {
// default action name
public function indexAction () {
$ this -> getView ()-> content = " Hello World " ;
}
}
?>
Skrip tampilan untuk pengontrol default dan tindakan default ada di application/views/index/index.phtml, Yaf menyediakan mesin tampilan sederhana yang disebut "Yaf_View_Simple", yang mendukung template tampilan yang ditulis dalam PHP.
Hello World
echo $ content ; ?>
http://www.example.com
Anda dapat membuat contoh di atas dengan menggunakan Yaf Code Generator: https://github.com/laruence/php-yaf/tree/master/tools/cg
./yaf_cg -d output_directory [-a application_name] [--namespace]
Info lebih lanjut dapat ditemukan di Yaf Manual: http://www.php.net/manual/en/book.yaf.php