- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章基于CakePHP实现的简单博客系统实例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
本文实例讲述了基于CakePHP实现的简单博客系统。分享给大家供大家参考。具体实现方法如下:
PostsController.php文件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php
class
PostsController
extends
AppController {
public
$helpers
=
array
(
'Html'
,
'Form'
,
'Session'
);
public
$components
=
array
(
'Session'
);
public
function
index()
{
$this
->set(
'posts'
,
$this
->Post->find(
'all'
));
}
public
function
view(
$id
=null)
{
$this
->Post->id=
$id
;
$this
->set(
'post'
,
$this
->Post->read());
}
public
function
add()
{
if
(
$this
->request->is(
"post"
))
{
$this
->Post->create();
if
(
$this
->Post->save(
$this
->request->data))
{
$this
->Session->setFlash(
"your post added!"
);
$this
->redirect(
array
(
'action'
=>
'index'
));
}
else
{
$this
->Session->setFlash(
"unable to create post!"
);
}
}
}
public
function
edit(
$id
=null)
{
$this
->Post->id=
$id
;
if
(
$this
->request->is(
'get'
))
{
$this
->request->data =
$this
->Post->read();
}
else
{
if
(
$this
->Post->save(
$this
->request->data))
{
$this
->Session->setFlash(
'Your post has been updated.'
);
$this
->redirect(
array
(
'action'
=>
'index'
));
}
else
{
$this
->Session->setFlash(
'Unable to update your post.'
);
}
}
}
public
function
delete
(
$id
) {
if
(
$this
->request->is(
'get'
)) {
throw
new
MethodNotAllowedException();
}
if
(
$this
->Post->
delete
(
$id
)) {
$this
->Session->setFlash(
'The post with id: '
.
$id
.
' has been deleted.'
);
$this
->redirect(
array
(
'action'
=>
'index'
));
}
}
}
?>
|
Post.php文件:
1
2
3
4
5
6
7
8
9
10
11
12
|
<?php
class
Post
extends
AppModel {
public
$validate
=
array
(
'title'
=>
array
(
'rule'
=>
'notEmpty'
),
'body'
=>
array
(
'rule'
=>
'notEmpty'
)
);
}
?>
|
routes.php文件:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<?php
/**
* Routes configuration
*
* In this file, you set up routes to your controllers and their actions.
* Routes are very important mechanism that allows you to freely connect
* different urls to chosen controllers and their actions (functions).
*
* PHP 5
*
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @package app.Config
* @since CakePHP(tm) v 0.2.9
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
*/
/**
* Here, we are connecting '/' (base path) to controller called 'Pages',
* its action called 'display', and we pass a param to select the view file
* to use (in this case, /app/View/Pages/home.ctp)...
*/
//Router::connect('/', array('controller' => 'pages', 'action' => 'display', 'home'));
Router::connect(
'/'
,
array
(
'controller'
=>
'posts'
,
'action'
=>
'index'
));
/**
* ...and connect the rest of 'Pages' controller's urls.
*/
Router::connect(
'/pages/*'
,
array
(
'controller'
=>
'pages'
,
'action'
=>
'display'
));
/**
* Load all plugin routes. See the CakePlugin documentation on
* how to customize the loading of plugin routes.
*/
CakePlugin::routes();
/**
* Load the CakePHP default routes. Only remove this if you do not want to use
* the built-in default routes.
*/
require
CAKE .
'Config'
. DS .
'routes.php'
;
|
blog.sql文件如下:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
-- MySQL dump 10.13 Distrib 5.5.19, for Win64 (x86)
--
-- Host: localhost Database: facebook
-- ------------------------------------------------------
-- Server version 5.5.19
/*!40101
SET
@OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101
SET
@OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101
SET
@OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101
SET
NAMES utf8 */;
/*!40103
SET
@OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103
SET
TIME_ZONE=
'+00:00'
*/;
/*!40014
SET
@OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014
SET
@OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101
SET
@OLD_SQL_MODE=@@SQL_MODE, SQL_MODE=
'NO_AUTO_VALUE_ON_ZERO'
*/;
/*!40111
SET
@OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `posts`
--
DROP
TABLE
IF EXISTS `posts`;
/*!40101
SET
@saved_cs_client = @@character_set_client */;
/*!40101
SET
character_set_client = utf8 */;
CREATE
TABLE
`posts` (
`id`
int
(10) unsigned
NOT
NULL
AUTO_INCREMENT,
`title`
varchar
(50)
COLLATE
utf8_unicode_ci
DEFAULT
NULL
,
`body` text
COLLATE
utf8_unicode_ci,
`created` datetime
DEFAULT
NULL
,
`modified` datetime
DEFAULT
NULL
,
PRIMARY
KEY
(`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5
DEFAULT
CHARSET=utf8
COLLATE
=utf8_unicode_ci;
/*!40101
SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table `posts`
--
LOCK TABLES `posts` WRITE;
/*!40000
ALTER
TABLE
`posts` DISABLE KEYS */;
INSERT
INTO
`posts`
VALUES
(1,
'The title'
,
'This is the post body.'
,
'2012-11-01 15:43:41'
,
NULL
),(2,
'A title once again'
,
'And the post body follows.'
,
'2012-11-01 15:43:41'
,
NULL
),(3,
'Title strikes back'
,
'This is really exciting! Not.'
,
'2012-11-01 15:43:41'
,
NULL
),(4,
'ggjjkhkhhk'
,
'7777777777777777777777777\r\n777777777777777777777777'
,
'2012-11-01 20:16:28'
,
'2012-11-01 20:16:28'
);
/*!40000
ALTER
TABLE
`posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `schema_migrations`
--
DROP
TABLE
IF EXISTS `schema_migrations`;
/*!40101
SET
@saved_cs_client = @@character_set_client */;
/*!40101
SET
character_set_client = utf8 */;
CREATE
TABLE
`schema_migrations` (
`version`
varchar
(255)
COLLATE
utf8_unicode_ci
NOT
NULL
,
UNIQUE
KEY
`unique_schema_migrations` (`version`)
) ENGINE=InnoDB
DEFAULT
CHARSET=utf8
COLLATE
=utf8_unicode_ci;
/*!40101
SET
character_set_client = @saved_cs_client */;
--
-- Dumping data for table `schema_migrations`
--
LOCK TABLES `schema_migrations` WRITE;
/*!40000
ALTER
TABLE
`schema_migrations` DISABLE KEYS */;
INSERT
INTO
`schema_migrations`
VALUES
(
'20121013024711'
),(
'20121013030850'
);
/*!40000
ALTER
TABLE
`schema_migrations` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103
SET
TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101
SET
SQL_MODE=@OLD_SQL_MODE */;
/*!40014
SET
FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014
SET
UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101
SET
CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101
SET
CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101
SET
COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111
SET
SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2012-11-01 16:41:46
|
希望本文所述对大家的php程序设计有所帮助.
最后此篇关于基于CakePHP实现的简单博客系统实例的文章就讲到这里了,如果你想了解更多关于基于CakePHP实现的简单博客系统实例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
经验丰富的程序员,但对 CakePHP 2.1 不熟悉,我花了一天的时间努力让自定义 Helper 在 View 中工作,遵循手册:http://book.cakephp.org/2.0/en/vie
任何人都可以列出 CakePHP 框架相对于其他 PHP 框架的缺点吗? 1) 请解释为什么缺少的功能对 PHP 项目如此重要? 2) 该缺失的功能如何帮助那些使用具有该功能的框架的 Web 开发人员
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我对 PHP 比较陌生。开始学习 PHP,但后来遇到了 cakePHP,它可以加快开发时间。 阅读文档和博客教程后,我仍然不明白命名约定。我想在我开始做一些例子之前我不会知道,但是为了让我开始,有人可
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 6 年前。
任何人都可以告诉我为什么当一个字段没有翻译时它返回空,而不是默认翻译? 我会感谢所有建议... 不知道你想看我代码的哪一部分,因为它都是直接来自 www.book.cake.org。所以我粘贴了一些代
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我正在编写一个支持多种测量单位的应用程序。在极少数情况下,用户想要更改他们的测量系统,我需要运行一个查询,该查询应用乘数将应用程序中的每个单位列缩放到正确的测量系统。为了确保所有数据在此操作出现问题时
很难说出这里问的是什么。这个问题模棱两可、含糊不清、不完整、过于宽泛或言辞激烈,无法以目前的形式合理回答。如需帮助澄清此问题以便可以重新打开,visit the help center . 8年前关闭
在用户模型中: var $hasMany = array( 'Photo' => array( 'className' => 'Photo',
剧透:我想更好地了解对 CakePHP 应用程序的请求的生命周期。 背景:我使用的是 CakePHP v2.3。我正在调试一个问题,该问题导致我无法找到的不想要的重定向。我正在尝试通过增量添加 die
在我的 Cake 应用程序中,我有一个 Controller “completed_projects”。它的索引操作不带参数并列出了一些项目。可以访问不同的页面example.com/complete
我找不到有关cakeError()定义为成员函数的任何信息。 documentation仅声明该调用看起来像这样: $this->cakeError(string $errorType [, arra
我创建了一个自定义数据源,该数据源从Web api获取数据,现在我正在研究实现错误处理。 在数据源中,我正在调用$ model-> onError()。在模型中,我创建了onError方法,并且可以使
除了重定向和渲染之外,还有其他命令可以将 Controller 重定向到特定 View 页面吗? 我的重定向为 $this->redirect('/forms/homepage/'.$userId);
我试图在我的字段中查找计数并连接该计数,但它给出错误消息,因为找不到 make_count 并且我在上面创建了相同的字段。 $this->Car->virtualFields['make_count'
我想要条件验证,即在更新密码时隐藏字段,并且密码验证为“6 到 15”个字符!因此密码以哈希格式存储在数据库中,因此不允许我更新。我的模型代码如下, array( 'rule
echo $form->input( 'country_id', array( 'type' => 'select', 'label' => __('C
我正在使用 CakePHP 创建一个锦标赛平台。目前,我已经创建了以下可以完美运行的表格、模型和 Controller :锦标赛、用户和团队。 我还创建了一个“Tournamentuser”表、 Co
我的场景是这样的: 在我的/views/layout/default.ctp 在我的/views/pages/home.ctp Html-
我是一名优秀的程序员,十分优秀!