摘要: 文章来源 http://twig.sensiolabs.org/doc/tags/index.htmluse标签use标签是1.1版本新添加内容。这个use标签主要是来解决模板只能从一个父模板继承,而你又想重用其他模板的问题。但是use标签只会导入block区块,(注意import只会导入宏macros,include会导入一切。这三个标签要区分清楚)比如[html] view plaincopyprint?{% extends "base.html" %} {% use "blocks.html" %} {% block title %}{% endb 阅读全文
posted @ 2013-01-29 10:41 V.Wang 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Twig 是个 简单而强力的模板,因为在学习sf 所以看看她。本文来源http://twig.sensiolabs.org/doc/tags/index.html目前支持的tags包括 for if macro filter set extends block include import from use spaceless autoescape raw flush dotwig在html分为3种{{...}} 直接输出其中的变量{#...#} 注释标签{%...%} 命令标签,就是我们要学习的这些for标签这个最简单,就是循环。基于数组的循环[html] view plaincopypri 阅读全文
posted @ 2013-01-29 10:40 V.Wang 阅读(316) 评论(0) 推荐(0) 编辑
摘要: 目前支持的过滤器包括date format replace number_format url_encode json_encode convert_encoding title capitalize nl2br upper lower striptags join reverse length sort default keys escape raw mergedate过滤器1.1版本新增时区支持,1.5版本增加了默认的日期格式。这个过滤器和php的date函数无限类似[html] view plaincopyprint?{{ post.published_at|date("m/d 阅读全文
posted @ 2013-01-29 10:38 V.Wang 阅读(618) 评论(0) 推荐(0) 编辑
摘要: 读取name属性:$('#retReason').attr("name")修改name属性:$('#retReason').attr("name","testvalue"); 阅读全文
posted @ 2013-01-22 15:16 V.Wang 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 判断是否为数字 is_numeric($value) 阅读全文
posted @ 2013-01-22 15:16 V.Wang 阅读(122) 评论(0) 推荐(0) 编辑
摘要: CSS文件的更新php app/console assets:install web/Entity的生成 根据数据库定义,生产Entity的命令根据数据库表生成yml文件(或其他xml..)php app/console doctrine:mapping:convert yml ./src/HRSystem/CommonBundle/Resources/config/doctrine/metadata/orm --from-database --force根据数据库(yml)生成对应影射类php app/console doctrine:mapping:import HRSystemComm. 阅读全文
posted @ 2013-01-15 13:39 V.Wang 阅读(299) 评论(0) 推荐(0) 编辑
摘要: 在symfony2.0中,如果不安装DataGridBundle会出现这种错误:you have requested a non-existent service "grid"解决方法如下在../app/AppKernel.php 中添加 new Sorien\DataGridBundle\SorienDataGridBundle(),在../app/autoload.php中$loader->registerNamespaces(array( 'Symfony' => array(__DIR__.'/../vendor/symfony/ 阅读全文
posted @ 2013-01-15 11:05 V.Wang 阅读(500) 评论(0) 推荐(0) 编辑
摘要: 思维导图点击下图,可以看具体内容!介绍 正则表达式,大家在开发中应该是经常用到,现在很多开发语言都有正则表达式的应用,比如javascript,java,.net,php等等,我今天就把我对正则表达式的理解跟大家唠唠,不当之处,请多多指教!需要知道的术语——下面的术语你知道多少?Δ 定界符Δ 字符域Δ 修饰符Δ 限定符Δ 脱字符Δ 通配符(正向预查,反向预查)Δ 反向引用Δ 惰性匹配Δ 注释Δ 零字符宽定位 我们什么时候使用正则表达式呢?不是所有的字符操作都用正则就好了,php在某些方面用正则反而影响效率。当我们遇到复杂文本数据的解析时候,用正则是比较好的选择。优点 正则表达式在处理复杂字符操 阅读全文
posted @ 2013-01-14 18:01 V.Wang 阅读(231) 评论(0) 推荐(0) 编辑
摘要: $("#goback").click(function(){location.href="{{ path('_h710_index') }}"; }); 阅读全文
posted @ 2013-01-14 18:00 V.Wang 阅读(263) 评论(0) 推荐(0) 编辑
摘要: SQL对字符串的处理能力比较弱,比如我要循环遍历象1,2,3,4,5这样的字符串,如果用数组的话,遍历很简单,但是T-SQL不支持数组,所以处理下来比较麻烦。下边的函数,实现了象数组一样去处理字符串。一、用临时表做数组create function f_split(@c varchar(2000),@split varchar(2)) returns @t table(col varchar(20)) as begin while(charindex(@split,@c)<>0) begin insert @t(col) values (substring(@c,1,charind 阅读全文
posted @ 2013-01-09 17:02 V.Wang 阅读(404) 评论(0) 推荐(0) 编辑