Home >Backend Development >PHP Tutorial >php版Zencoding之 phpstorm

php版Zencoding之 phpstorm

WBOY
WBOYOriginal
2016-06-23 14:34:09856browse

自从js Js,jQuery版Zencoding之webstorm & phpstorm之后很受启发,偶尔玩玩 php ,整理了几个php常用的,旨在抛砖引玉,每个人的操作习惯和思维习惯是不一样,这个可以参考一下,根据不同的开发流程,可以整理不同的替换模板,在重申一下,zencoding的出现彻底改变了写html,css的方式,但是把这一项技术发扬光大的,也只有jetBrains公司的ide,据我了解,IntelliJ IDEA , phpstorm, webstorm 都可以添加相关的替换,其它编辑器是没有这个功能的。添加的方式,可以参考Js,jQuery版Zencoding之webstorm & phpstorm , webstorm的设定可以参考:前端开发利器webStorm 3.0配置使用 。

e:  echo;
ec:  echo '';
r:  return;
g: $_GET['$end$']
p: $_POST['$end$']
/ ?: 
i:  include " $END$";
io:  include_once " $END$";
re:  require " $END$";
reo:  require_once " $END$";
mq:  mysql_query()
fore: 
foreach ( $ITERABLE$  as $$ $VAR_VALUE$) {
     $END$
}
prif:
private  function  $NAME$( $PARAMETERS$){
     $END$
}
prisf:
private  static  function  $NAME$( $PARAMETERS$){
     $END$
}
prof:
protected  function  $NAME$( $PARAMETERS$){
     $END$
}
prosf:
protected  static  function  $NAME$( $PARAMETERS$){
     $END$
}
pubf:
public  function  $NAME$( $PARAMETERS$){
     $END$
}
if:
if( $END$){
}
ifel:
if( $END$){
}  else {
}
el: 
else {
     $end$
}

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:php学习??smartyNext article:php学习??xml