按日子来干活第一个Blog Day&Happy Day,干活第一个blogday
按日子来干活——第一个Blog Day&Happy Day,干活第一个blogday
今天(周一)看到一位同仁的生活规划,感觉挺适合我,实践一下,就theo&tools day+code day+blog day,间歇性有happy day嘛~
blog day这样做,一篇blog总结,内容多的分出去写单篇,在总结篇中给链接
=================================================
2016.06.20
本来打算写一个小网页的,关于摩斯码的,但是zend工具都用不好,找了个博客写的不错,实践下,有时间的话再去学点其他的
===================
坑http://my.oschina.net/junn/blog/161409——zend
2. 默认情况下,zend studio打不开.tpl文件,有没有什么方法,能让其支持.tpl的模板文件,以及其它格式,如dwt等相关的文件.
要 打开.tpl文件,你可以打开window->preferences ->general->content types,在右边选择一个文件类型,比如html,在下面添加*.tpl,保存之。这样双击*.tpl的文件即可用zde内置的编辑器打开了。
4、如何在zend studio for eclipse中,每次新建一个文件时,显示
/**
*
* @copyright(c) 2009
* @author oo
* @package common
* @version $Id: template.php
*/
现实累死(显示类似[gently注])这样子的东西 网上查说叫PHPDOC,但是还是没搞明白 谢谢
这个是zend studio for eclipse的Templates功能
老版本:进入菜单window->preferences->php->templates,在右边找到New simple PHP file
新版本:进入菜单window->preferences->php->code style->code templates, 在左边找到Simple php file,
默认的内容是这样的:
${cursor}
?>
就 是我们使用zend studio for eclipse new phpfile的时候默认的模板,你可以直接修改这个模板来满足你的要求,当然更好的做法是新建一个template,其context选择new php,然后编辑你的模板,这里支持一些变量。BTW:很多人可能以为${user}可以作为Author来用,而实际上这个变量是你的OS登录名,例如 我的就是administrator。
那么,怎么使用它呢?在使用New->php file新建文件的时候,在向导的下一步使用你修改过的New simple PHP file或者新建的模板名称
新版本:进入菜单window->preferences->php->code style->code templates可以添加文件头注释:
2013-2014 http://www.123.com
* ----------------------------------------------
* This is not a free software, without any authorization is not allowed to use and spread.
* ==============================================
* @param ${unknowtype}
* @return ${return_type}
* @author: ${user}
* @date: ${date}
* @version: v1.0.0
*/
/**
* @func: 函数功能描述
* @date: ${date}
* @author: ${user}
* @return: ${return_type}
*/
/**
* 文件描述
* @date ${date} ${time}
* @author xxx
* @version 1.0.0
* @copyright xxx
*/
/**
* @desc: 功能描述(description)
* @author: ${user}
* @date: ${date}
*/
#要添加的模板格式#
#名称:mdt
#描述:Methods describe the template
#模式:
/**
* The descriptions of functions.
*
* @access public|private|protected
* @param mixed $$name comment
* @param int $$name comment
* @param string $$name comment
* @param bool $$name comment
* @param array $$name comment
* @return void|int|string|boolean|array comment
*/
#示例如下#
/**
* The descriptions of functions.
*
* @access public|private|protected
* @param mixed $name comment
* @param int $name comment
* @param string $name comment
* @param bool $name comment
* @param array $name comment
* @return void|int|string|boolean|array comment
*/
?>