PHP框架详解 - symfony框架

        首先说一下为什么要写symfony框架,这个框架也属于PHP的一个框架,小编接触也是3年前,原因是小编接触Golang,发现symfony框架有PHP框架的东西也有Golang的东西,所以决定总结一下,有需要的同学可以参看小编的Golang相关博客,看完之后在学习symfony效果更佳

symfony安装

3版本安转:

composer create-project symfony/framework-standard-edition symfonyphp bin/console server:run

4版本安装:

composer create-project symfony/skeleton symfonycomposer require --dev symfony/web-server-bundlephp bin/console server:start

控制器:

创建地址:symfony\src\AppBundle\Controller\TestController.php

<?phpnamespace AppBundle\Controller;//命名空间use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;//路由文件
use Symfony\Bundle\FrameworkBundle\Controller\Controller;//基础控制器//基础类
class TestController extends Controller
{/*** 一定要写,定义路由(page表示参数,requirements表示数据验证)* @Route("/test/index/{page}", requirements = {"page": "\d+"})*/public function indexAction($page="") {echo "Hellow word"."<br />";echo "获取参数:".$page;die;}
}

路由参数:

单参数

访问地址:http://127.0.0.1:8000/test/index/1

访问地址:http://127.0.0.1:8000/test/index/2

​​

多参数:

public function indexAction($page="",$limit="") {echo "Hellow word"."<br />";echo "获取参数1:".$page."<br />";echo "获取参数2:".$limit;die;
}

访问地址:http://127.0.0.1:8000/test/index/1&10

​​

重定向:

访问地址:http://127.0.0.1:8000/test/jump

/*** @Route("/test/jump")*/
public function jump(){echo "当前方法是:jump";return $this->redirect("/test/index/2&10");die;
}

模板引擎:

Twig语法:

{{...}} - 将变量或表达式的结果打印到模板。

{%...%} - 控制模板逻辑的标签。 它主要用于执行功能。

{#...#} - 评论语法。 它用于添加单行或多行注释。

控制器:

/*** @Route("/test/template_en")*/
public function template_en(){return $this->render("default/test.html.twig",['controller_name' => "Test",'func_name' => "template_en",]);
}

页面:

{% extends 'base.html.twig' %}{% block body %}<div id="wrapper"><div id="container"><h1>WELCOM TO TEST</h1><div>控制器:{{controller_name}}</div><div>方法名:{{func_name}}</div></div></div>
{% endblock %}{% block stylesheets %}
<style>body { background: #F5F5F5; font: 18px/1.5 sans-serif; }h1, h2 { line-height: 1.2; margin: 0 0 .5em; }h1 { font-size: 36px; }h2 { font-size: 21px; margin-bottom: 1em; }p { margin: 0 0 1em 0; }a { color: #0000F0; }a:hover { text-decoration: none; }code { background: #F5F5F5; max-width: 100px; padding: 2px 6px; word-wrap: break-word; }#wrapper { background: #FFF; margin: 1em auto; max-width: 800px; width: 95%; }#container { padding: 2em; }#welcome h1 span { display: block; font-size: 75%; }
</style>
{% endblock %}

项目配置:

通过.yml文件实现配置文件自定义(Golang使用.yaml定义,实际上两者是一个东西)

一个Symfony项目有三种环境(dev、test和prod)

 

环境切换:AppKernel类负责加载你指定的配置文件(修改配置实现环境的切换)

基础方法:

切换目标文件:

表单:

        传统意义上表单是通过构建一个表单对象并将其渲染到模版来完成的。现在,在控制器里即可完成所有这些,这个是啥意思?简单点来说就是:使用PHP创建表单,而不是使用H5表单,具体代码如下:

类:

地址:symfony\src\AppBundle\Entity\Task.php
<?php
namespace AppBundle\Entity;class Task
{private $studentName;private $studentId;public $password;private $address;public $joined;public $gender;private $email;private $marks;public $sports;public function getUserName() {return $this->studentName;}public function setUserName($studentName) {$this->studentName = $studentName;}public function getUserId() {return $this->studentId;}public function setUserId($studentid) {$this->studentid = $studentid;}public function getAddress() {return $this->address;}public function setAddress($address) {$this->address = $address;}public function getEmail() {return $this->email;}public function setEmail($email) {$this->email = $email;}public function getMarks() {return $this->marks;}public function setMarks($marks) {$this->marks = $marks;}
}
?>

控制器:

地址:symfony\src\AppBundle\Controller\TestController.php
<?phpnamespace AppBundle\Controller;//命名空间use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\PercentType;
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
use Symfony\Component\HttpFoundation\Request;//基础类
class TestController extends Controller
{/*** @Route("/test/form_test")*/public function form_test(Request $request){//初始化对象$task = new Task();//创建$form = $this->createFormBuilder($task)->add('UserName', TextType::class,array('label'=>'姓名'))->add('UserId', TextType::class,array('label'=>'ID'))->add('password', RepeatedType::class, array('type'=>PasswordType::class,'invalid_message'=>'请填写密码','options'=>array('attr'=>array('class'=>'password-field')),'required'=>true,'first_options'=> array('label'=>'密码'),'second_options'=>array('label'=>'确认密码'),))->add('address', TextareaType::class,array('label'=>'地址'))->add('joined', DateType::class, array('widget'=>'choice','label'=>'生日'))->add('gender', ChoiceType::class,array('choices'=> array('男'=>true,'女'=>false,),'label'=>'性别'))->add('email', EmailType::class,array("label"=>"邮箱"))->add('marks', PercentType::class,array("label"=>"百分比"))->add('sports', CheckboxType::class, array('label'=>'是否班干部','required'=>false,))->add('save', SubmitType::class, array('label'=>'提交'))->getForm();$form->handleRequest($request);if ($form->isSubmitted() && $form->isValid()) {$task = $form->getData();echo "获取数据:<br />";var_dump($task);die;}//渲染return $this->render('default/form_test.html.twig', array('form' => $form->createView(),));}
}

页面:

地址:symfony\app\Resources\views\default\form_test.html.twig

{% extends 'base.html.twig' %}{% block body %}<h3>表单示例</h3><div id="simpleform">{{ form_start(form) }}{{ form_widget(form) }}{{ form_end(form) }}</div>
{% endblock %}{% block stylesheets %}<style>h3{text-align: center;}#simpleform {width:50%;border:2px solid grey;padding:14px;margin-left: 25%;}#simpleform label {font-size:14px;float:left;width:300px;text-align:right;display:block;}#simpleform span {font-size:11px;color:grey;width:100px;text-align:right;display:block;}#simpleform input {border:1px solid grey;font-family:verdana;font-size:14px;color:light blue;height:24px;margin: 0 0 10px 10px;}#simpleform textarea {border:1px solid grey;font-family:verdana;font-size:14px;color:light blue;height:120px;width:250px;margin: 0 0 20px 10px;}#simpleform select {margin: 0 0 20px 10px;}#simpleform button {clear:both;margin-left:30%;background: grey;color:#FFFFFF;border:solid 1px #666666;font-size:16px;width: 20rem;}</style>
{% endblock %}

打印数据:

object(AppBundle\Entity\Task)#2714 (10) 
{["studentName":"AppBundle\Entity\Task":private]=> string(1) "1" ["studentId":"AppBundle\Entity\Task":private]=> NULL ["password"]=> string(7) "3456789" ["address":"AppBundle\Entity\Task":private]=> string(1) "4" ["joined"]=> object(DateTime)#5649 (3) { ["date"]=> string(26) "2019-01-01 00:00:00.000000" ["timezone_type"]=> int(3)["timezone"]=> string(3) "UTC" } ["gender"]=> bool(true) ["email":"AppBundle\Entity\Task":private]=> string(8) "6@qq.com" ["marks":"AppBundle\Entity\Task":private]=> float(0.07) ["sports"]=> bool(true) ["studentid"]=> string(1) "2" }

文件上传:

修改配置文件:

打开扩展:php.ini    extension=php_fileinfo.dll
修改配置文件:symfony\app\config\config.yml

类:

<?php
namespace AppBundle\Entity;class Task
{public $photo;public function getPhoto() {return $this->photo;}public function setPhoto($photo) {$this->photo = $photo;return $this;}
}
?>

控制器:

<?phpnamespace AppBundle\Controller;//命名空间//基础类
class TestController extends Controller
{/*** @Route("/test/form_test")*/public function form_test(Request $request){//初始化对象$task = new Task();//创建$form = $this->createFormBuilder($task)->add('UserName', TextType::class,array('label'=>'姓名'))->add('UserId', TextType::class,array('label'=>'ID'))->add('password', RepeatedType::class, array('type'=>PasswordType::class,'invalid_message'=>'请填写密码','options'=>array('attr'=>array('class'=>'password-field')),'required'=>true,'first_options'=> array('label'=>'密码'),'second_options'=>array('label'=>'确认密码'),))->add('address', TextareaType::class,array('label'=>'地址'))->add('joined', DateType::class, array('widget'=>'choice','label'=>'生日'))->add('gender', ChoiceType::class,array('choices'=> array('男'=>true,'女'=>false,),'label'=>'性别'))->add('email', EmailType::class,array("label"=>"邮箱"))->add('marks', PercentType::class,array("label"=>"百分比"))->add('sports', CheckboxType::class, array('label'=>'是否班干部','required'=>false,))->add('photo', FileType::class, array('label' => '图片(格式:png, jpeg)'))->add('save', SubmitType::class, array('label'=>'提交'))->getForm();$form->handleRequest($request);if ($form->isSubmitted() && $form->isValid()) {$file = $task->getPhoto();$fileName = md5(uniqid()).'.上传文件';$file->move($this->getParameter('photos_directory'), $fileName);$task->setPhoto($fileName);return new Response("上传成功");die;}else{//渲染return $this->render('default/form_test.html.twig', array('form' => $form->createView(),));}}
}

结果:

完整代码:

完整类:

<?php
namespace AppBundle\Entity;class Task
{private $studentName;private $studentId;public $password;private $address;public $joined;public $gender;private $email;private $marks;public $sports;public $photo;public function getUserName() {return $this->studentName;}public function setUserName($studentName) {$this->studentName = $studentName;}public function getUserId() {return $this->studentId;}public function setUserId($studentid) {$this->studentid = $studentid;}public function getAddress() {return $this->address;}public function setAddress($address) {$this->address = $address;}public function getEmail() {return $this->email;}public function setEmail($email) {$this->email = $email;}public function getMarks() {return $this->marks;}public function setMarks($marks) {$this->marks = $marks;}public function getPhoto() {return $this->photo;}public function setPhoto($photo) {$this->photo = $photo;return $this;}
}
?>

完整控制器:

<?phpnamespace AppBundle\Controller;//命名空间use AppBundle\Entity\Task;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;//路由文件
use Symfony\Bundle\FrameworkBundle\Controller\Controller;//基础控制器
use Symfony\Component\Form\Extension\Core\Type\TextType;
use Symfony\Component\Form\Extension\Core\Type\DateType;
use Symfony\Component\Form\Extension\Core\Type\SubmitType;use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
use Symfony\Component\Form\Extension\Core\Type\PasswordType;
use Symfony\Component\Form\Extension\Core\Type\EmailType;
use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
use Symfony\Component\Form\Extension\Core\Type\TextareaType;
use Symfony\Component\Form\Extension\Core\Type\PercentType;
use Symfony\Component\Form\Extension\Core\Type\RepeatedType;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Form\Extension\Core\Type\FileType;
use AppBundle\Form\FormValidationType;
use Symfony\Component\HttpFoundation\Response;//基础类
class TestController extends Controller
{/*** 一定要写,定义路由(page表示参数,requirements表示数据验证)* @Route("/test/index/{page}&{limit}", name = "test_index", requirements = {"page": "\d+"})*/public function indexAction($page="",$limit="") {echo "Hellow word"."<br />";echo "获取参数1:".$page."<br />";echo "获取参数2:".$limit;die;}/*** @Route("/test/jump")*/public function jump(){echo "当前方法是:jump";return $this->redirect("/test/index/2&10");die;}/*** @Route("/test/template_en")*/public function template_en(){return $this->render("default/test.html.twig",['controller_name' => "Test",'func_name' => "template_en",]);}/*** @Route("/test/form_test")*/public function form_test(Request $request){//初始化对象$task = new Task();//创建$form = $this->createFormBuilder($task)->add('UserName', TextType::class,array('label'=>'姓名'))->add('UserId', TextType::class,array('label'=>'ID'))->add('password', RepeatedType::class, array('type'=>PasswordType::class,'invalid_message'=>'请填写密码','options'=>array('attr'=>array('class'=>'password-field')),'required'=>true,'first_options'=> array('label'=>'密码'),'second_options'=>array('label'=>'确认密码'),))->add('address', TextareaType::class,array('label'=>'地址'))->add('joined', DateType::class, array('widget'=>'choice','label'=>'生日'))->add('gender', ChoiceType::class,array('choices'=> array('男'=>true,'女'=>false,),'label'=>'性别'))->add('email', EmailType::class,array("label"=>"邮箱"))->add('marks', PercentType::class,array("label"=>"百分比"))->add('sports', CheckboxType::class, array('label'=>'是否班干部','required'=>false,))->add('photo', FileType::class, array('label' => '图片(格式:png, jpeg)'))->add('save', SubmitType::class, array('label'=>'提交'))->getForm();$form->handleRequest($request);if ($form->isSubmitted() && $form->isValid()) {$file = $task->getPhoto();$fileName = md5(uniqid()).'.上传文件';$file->move($this->getParameter('photos_directory'), $fileName);$task->setPhoto($fileName);return new Response("上传成功");die;}else{//渲染return $this->render('default/form_test.html.twig', array('form' => $form->createView(),));}}}

完整页面:

{% extends 'base.html.twig' %}
{% block javascripts %}<script language = "javascript" src = "https://code.jquery.com/jquery-2.2.4.min.js"></script>
{% endblock %}{% block body %}<h3>表单示例</h3><div id="simpleform">{{ form_start(form) }}{{ form_widget(form) }}{{ form_end(form) }}</div>
{% endblock %}{% block stylesheets %}<style>h3{text-align: center;}#simpleform {width:50%;border:2px solid grey;padding:14px;margin-left: 25%;}#simpleform label {font-size:14px;float:left;width:300px;text-align:right;display:block;}#simpleform span {font-size:11px;color:grey;width:100px;text-align:right;display:block;}#simpleform input {border:1px solid grey;font-family:verdana;font-size:14px;color:light blue;height:24px;margin: 0 0 10px 10px;}#simpleform textarea {border:1px solid grey;font-family:verdana;font-size:14px;color:light blue;height:120px;width:250px;margin: 0 0 20px 10px;}#simpleform select {margin: 0 0 20px 10px;}#simpleform button {clear:both;margin-left:30%;background: grey;color:#FFFFFF;border:solid 1px #666666;font-size:16px;width: 20rem;}</style>
{% endblock %}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/667064.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【数据结构】链表OJ面试题(题库+解析)

前言 还不清楚链表的码喵们可以看看前篇关于链表的详解 http://t.csdnimg.cn/X6t6P 1.链表面试题 既然已经懂得了链表该如何实现&#xff0c;那么现在就趁热打铁开始练习&#xff01;这里给码喵们整理了相对不错的一些OJ题来练习 1. 删除链表中等于给定值 val 的所有结点。 力…

【Lambda表达式和函数式接口】

目录 Lambda表达式和函数式接口的使用具有以下几个影响&#xff1a;下面是一个简单的示例代码&#xff0c;使用Lambda表达式实现一个对列表进行遍历的操作&#xff1a; 在Java 8及以上版本中&#xff0c;Lambda表达式是一种函数式编程的特性&#xff0c;它可以使代码更加简洁、…

【Tomcat与网络2】一文理解Servlet是怎么工作的

在前面&#xff0c;我们研究了如何用idea来启动一个Servlet程序&#xff0c;今天我们就再来看一下Servlet是如何工作的。 目录 1.Servlet 介绍 2.Servlet 容器工作过程 3.Servlet的扩展 不管是电脑还是手机浏览器&#xff0c;发给服务端的就是一个 HTTP 格式的请求&#xf…

微信网页授权之使用完整服务解决方案

目录 微信网页授权能力调整造成的问题 能力调整的内容和理由 原有运行方案 is_snapshotuser字段 改造原有方案 如何复现测试场景 小结 微信网页授权能力调整造成的问题 依附于第三方的开发&#xff0c;做为开发者经常会遇到第三方进行规范和开发的调整&#xff0c;如开…

【EI会议征稿通知】2024年材料物理与复合材料国际学术会议

2024年材料物理与复合材料国际学术会议 2024 International Conference on Materials Physics and Composites(ICMPC 2024) 2024年材料物理与复合材料国际学术会&#xff08;ICMPC 2024&#xff09;将于2024年5月24-26日在中国成都举行。ICMPC 2024将吸引顶尖的研究人员和从业…

Python flask 模板详解

文章目录 1 概述1.1 模板简介1.2 templates 文件1.3 简单应用 2 模板语法2.1 for 循环2.2 if 判断 3 模板的继承3.1 格式要求3.2 实现示例3.3 复用父模板的内容&#xff1a;super 1 概述 1.1 模板简介 定义&#xff1a;定义好的 html 文件&#xff0c;用于快速开发 web 页面J…

【不单调的代码】还在嫌弃Ubuntu终端?快来试试做些Ubuntu终端的花式玩法。

&#x1f38a;专栏【不单调的代码】 &#x1f354;喜欢的诗句&#xff1a;更喜岷山千里雪 三军过后尽开颜。 &#x1f386;音乐分享【Love Story】 &#x1f970;大一同学小吉&#xff0c;欢迎并且感谢大家指出我的问题&#x1f970; 注意&#xff1a; 本文是在Ubuntu环境下进…

Unity中blendtree和state间的过渡

混合树状态之间的过渡 如果属于此过渡的当前状态或下一状态是混合树状态&#xff0c;则混合树参数将出现在 Inspector 中。通过调整这些值可预览在混合树值设置为不同配置时的过渡表现情况。 如果混合树包含不同长度的剪辑&#xff0c;您应该测试在显示短剪辑和长剪辑时的过渡表…

明道云入选亿欧智库《AIGC入局与低代码产品市场的发展研究》

2023年12月27日&#xff0c;亿欧智库正式发布**《AIGC入局与低代码产品市场的发展研究》**。该报告剖析了低代码/零代码市场的现状和发展趋势&#xff0c;深入探讨了大模型技术对此领域的影响和发展洞察。其中&#xff0c;亿欧智库将明道云作为标杆产品进行了研究和分析。 明…

指针的学习2

目录 数组名的理解 使用指针访问数组 一维数组传参的本质 冒泡排序 二级指针 指针数组 指针数组模拟二维数组 数组名的理解 数组名是数组首元素的地址 例外&#xff1a; sizeof(数组名),sizeof中单独放数组名&#xff0c;这里的数组名表示整个数组&#xff0c;计算的…

mac如何实现升级node版本、切换node版本

一、 查看node所有版本&#xff08;前提:安装了nodejs&#xff09; npm view node versions二、安装指定node版本 sudo n 版本号三、检查目前安装了哪些版本的node&#xff0c;会出现已安装的node版本 n四、切换已安装的node版本 sudo n 版本号其他命令 1、sudo npm cache…

Git快速入门+常用指令+提交规范

目录 Git创建本地仓库 IDEA集成Git Git和IDEA连接使用2 忽略文件 本地仓库常用命令 远程仓库常用命令 分支常用命令 标签操作 提交规范 Git创建本地仓库 1、创建一个文件夹&#xff0c;右键选择Git Bash Here 2、选择下列其中一个方法 方法一&#xff1a;创建初始化…

一篇文章了解区分指针数组,数组指针,函数指针,链表。

最近在学习指针&#xff0c;发现指针有这许多的知识&#xff0c;其中的奥妙还很多&#xff0c;需要学习的也很多&#xff0c;今天那我就将标题中的有关指针知识&#xff0c;即指针数组&#xff0c;数组指针&#xff0c;函数指针&#xff0c;给捋清楚这些知识点&#xff0c;区分…

react native错误记录

第一次运行到安卓失败 Could not find implementation class com.facebook.react.ReactRootProjectPlugin for plugin com.facebook.react.rootproject specified in jar:file:/D:/Android_Studio_Data/.gradle/caches/jars-9/o_3a1fd35320f05989063e7069031b710f/react-nativ…

LabVIEW智能温度直流模件自动测试系统

LabVIEW智能温度直流模件自动测试系统 自动化测试系统在提高测试效率和准确性方面发挥着越来越重要的作用。介绍了一种基于LabVIEW的智能温度直流模件&#xff08;TDCA&#xff09;自动测试系统的设计与实施&#xff0c;旨在提高测控装置的产品质量。 系统的硬件平台主要由PS…

一篇文章搞懂CNN(卷积神经网络)及其所含概念

目录 1. 什么是卷积神经网络&#xff1a;2. 应用领域&#xff1a;3. 架构&#xff1a;4. 卷积层的参数和名词参数&#xff1a;名词&#xff1a; 5. 注意&#xff1a;6. 经典网络&#xff1a;小结&#xff1a; 当下&#xff0c;计算机视觉在人工智能领域中扮演着至关重要的角色。…

matlab使用jdbc连接数据库

1、打包jdbc 2、在matlab安装目录下&#xff0c;进去toolbox目录下&#xff0c;新建一个对应放jdbc包的文件夹&#xff0c;加入放入的是mysql的jdbc驱动包&#xff0c;就新建一个mysql目录&#xff0c;将驱动包放入mysql目录下 3、在toolbox目录下&#xff0c;找到local目录&a…

手工方式安装19.22RU

使用手工方式打RU19.22 参考文档&#xff1a; Supplemental Readme - Grid Infrastructure Release Update 12.2.0.1.x / 18c /19c (Doc ID 2246888.1) 操作步骤&#xff1a; 1 Stop the CRS managed resources running from DB homes. 2 Run the pre root script. 3 Patch G…

C语言问题汇总

指针 #include <stdio.h>int main(void){int a[4] {1,2,3,4};int *p &a1;int *p1 a1;printf("%#x,%#x",p[-1],*p1);} 以上代码中存在错误。 int *p &a1; 错误1&#xff1a;取a数组的地址&#xff0c;然后1&#xff0c;即指针跳过int [4]大小的字节…

SQL 函数(十二)

SQL 函数&#xff08;十二&#xff09; 一、函数分类 1.1 单行函数 单行函数仅对单个行进行运算&#xff0c;并且每行返回一个结果。 常见的函数类型&#xff1a; 字符、数字、日期、转换 1.2 多行函数 多行函数能够操纵成组的行&#xff0c;每个行组给出一个结果&#x…