-
symfony find 添加排序查看全部
-
定制form表单查看全部
-
三换一 设置美化界面查看全部
-
type 设定后是单一的查看全部
-
将内容保存到数据库查看全部
-
<?php<br> <br> namespace Scourgen\WebBundle\Controller;<br> <br> use Symfony\Bundle\FrameworkBundle\Controller\Controller;<br> use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;<br> use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template; //定义模板文件<br> <br> class DefaultController extends Controller<br> {<br> /**<br> * @Route("/page/{page_num}",defaults={"page_num":1},requirements={"page_num"="\d+"}) //defaults 默认的页数 ; requirements 匹配数字; \d+ 加号的意思就是为任意数字,如果不带加号,则无法匹配两位数。<br> *@Template() //引用<br> */<br> public function indexAction($page_num)<br> {<br> return array('name' => $page_num);<br> }<br> }查看全部
-
Respository 對象操作集合 Proxy Class 如user entity 調用时不會導入它的其他外鍵表 在用到時才導入 user->getAddress();查看全部
-
$this->getRequest()->getSession()->getFlashBag()->add( 'notice', 'you have something wrong' ); 一次的Session,用完就會消失,一些表單提示的功能 $this->container->get('request'); container就是一個容器 存放了很多Service 這裏調用了request這個服務 或$this->get('request');查看全部
-
symfony install install composer curl -sS https://getcomposer.org/installer | php mv composer.phar /usr/local/bin Creating a Symfony Application with Composer composer create-project symfony/framework-standard-edition my_project_name "2.8.*" 增加自己的bundle composer.json 在app/AppKerenal中為symfony啟用 所有的請求到是先到app.php symfony優点 快速開發健壯的,可持續升級的應用 使開發過程更加關注業務邏輯(像不用理表單驗證,處理緩存) 更加理解網站開發領域中最佳實踐 開放性, 持續升級性, 有商業背景支持, 引領PHP領域最佳實踐性 創建自己的bundle app/console generate:bundle 判斷是否POST $method = $this->getRequest()->getMethod() if($method == 'POST') {} $this->getRequest()->get('page') //GET 和 POST都可以 GET優先 $this->getRequest()->isXmlHttpRequest() 判斷是否ajax請求 return new RedirectResponse('http://www.google.com'); //redirect $this->getRequest()->getSession()->set('c',1000); app/cache/dev 要有寫权限才能用session $this->getRequest->getSession()->get('c');查看全部
-
外键在哪边jionColumn就写在哪边,哪个就是inverseBy,对面的就是mappedBy查看全部
-
mysql_workbench查看全部
-
图书管理数据库1查看全部
-
挺好的。查看全部
-
doctrine sql conn查看全部
-
www.puphpet.com下载定制化的Vagrant https://github.com/scourgen/Vagrant-PHP-Stack查看全部
举报
0/150
提交
取消