码迷,mamicode.com
首页 > Web开发 > 详细

phalcon——HTTP 请求

时间:2015-08-02 13:04:44      阅读:1009      评论:0      收藏:0      [点我收藏+]

标签:

(一般在控制器方法中使用)

获取值:

(1)直接获取值:

     $customerName = $this->request->getPost("name");

2)自动添加过滤器:

     $email = $this->request->getPost("user_email", "email");

3)手动添加过滤器:

     $filter = new Filter();

     $email  = $filter->sanitize($this->request->getPost("user_email"), "email");

4)若值为空,设置默认值

     $email = $this->request->getPost("user_email", "email", "some@example.com");

 

使用请求头信息:

(1)获取服务器IP地址:

     $ipAddress  =  $this->request->getServerAddress();

(2)获取客户端IP地址:

     $ipAddress  =  $this->request->getClientAddress();

 

文件上传:

use Phalcon\Mvc\Controller;

 

class PostsController extends Controller

{

    public function uploadAction()

    {

        // Check if the user has uploaded files

        if ($this->request->hasFiles()) {

 

            // Print the real file names and sizes

            foreach ($this->request->getUploadedFiles() as $file) {

 

                // Print file details

                echo $file->getName(), " ", $file->getSize(), "\n";

 

                // Move the file into the application

                $file->moveTo(‘files/‘ . $file->getName());

            }

        }

    }

}

phalcon——HTTP 请求

标签:

原文地址:http://www.cnblogs.com/wujuntian/p/4695433.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!