攻克CakePHP(PHP中的Ruby On Rails架構)圖文介紹第1/2頁

來源:互聯網
上載者:User

CakePHP架構首頁: http://www.cakephp.org/

下載後匯入工程中,目錄結構如(使用版本:1.1.19.6305)

搭建PHP環境,這裡使用了AppServ2.5.9。 下載首頁 http://www.appservnetwork.com/

MySQL中建立資料庫blog,並運行如下SQL文建表。

/**//* First, create our posts table: */
CREATE TABLE posts (
id INT UNSIGNED AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(50),
body TEXT,
created DATETIME DEFAULT NULL,
modified DATETIME DEFAULT NULL
);

/**//* Then insert some posts for testing: */
INSERT INTO posts (title,body,created)
VALUES ('The title', 'This is the post body.', NOW());
INSERT INTO posts (title,body,created)
VALUES ('A title once again', 'And the post body follows.', NOW());
INSERT INTO posts (title,body,created)
VALUES ('Title strikes back', 'This is really exciting! Not.', NOW());

修改工程app/config/目錄下database.php.default檔案名稱為database.php,並修改其配置。

修改Apache的httpd.conf檔案。

Apache2.2版本的,直接把#LoadModule rewrite_modulemodules/mod_rewrite.so的注釋刪掉即可。

2.0以前的版本,據說要修改2個地方: LoadModule rewrite_module libexec/httpd/mod_rewrite.soAddModule mod_rewrite.c

增加Model:

/app/models/post.php

代碼:

<?php

require_once ('cake/app_model.php');

class Post extends AppModel {

public $name = 'Post';

public $validate = array(

'title' => VALID_NOT_EMPTY,
'body' => VALID_NOT_EMPTY

);
}

?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.