Yaf的hello world 樣本

來源:互聯網
上載者:User
Yaf,全稱 Yet Another Framework,是一個C語言編寫的PHP架構,[1] 是一個以PHP擴充形式提供的PHP開發架構, 相比於一般的PHP架構, 它更快,更輕便. 它提供了Bootstrap, 路由, 分發, 視圖, 外掛程式, 是一個全功能的PHP架構。這節內容我們就來說說基於yaf的Hello world樣本,假設我的例子的網站目錄為 /var/www/yaf_test ,我採用的目錄結構如下:

- index.php //入口檔案+ public |- .htaccess //重寫規則  |+ css  |+ img  |+ js + conf  |- application.ini //設定檔 + application  |+ controllers   |- Index.php //預設控制器  |+ views   |+ index //控制器    |- index.phtml //預設視圖  |+ modules //其他模組  |+ library //本地類庫  |+ models //model目錄  |+ plugins //外掛程式目錄

編寫入口檔案 index.php

<?php    //指向網站根目錄    define("APP_PATH",  dirname(__FILE__));    $app = new Yaf_Application(APP_PATH."/conf/application.ini");    $app->run();

編輯 public/.htaccess重寫規則(apache)

RewriteEngine On     RewriteCond %{REQUEST_FILENAME} !-f    RewriteRule .* index.php

編輯設定檔 conf/application.ini

 [product]    application.directory=APP_PATH "/application/"

編輯預設控制器 application/controllers/Index.php

<?php    class IndexController extends Yaf_Controller_Abstract{     public function indexAction(){    $this->getView()->assign("content", "Hello world");     }     }

編輯檢視檔案 templates/index/index.phtml

<html>    <head><title>Hello World</title></head>    <body>    <?php echo $content; ?>    </body>    </html>

經過以上操作,在瀏覽器輸入網站127.0.0.1/yaf_test 就能看到Hello world的輸出了, 如果不能,請再檢查以上步驟是否做對!

以上就是一個簡單的基於yaf的Hello world樣本,如果大家有疑問歡迎諮詢哦。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.