|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
学习数据库了,MYSQL可算是PHP的黄金搭档了,不过,虽然话是这么说,你也可能恨不得把MYSQL给生吞活剥了,因为这一行一列的东东简直让自己头晕目眩。 php.net比来更新了php文档,对照有效的是新增的pman东西。pman是一个号令行小东西,便利检查php函数的当地匡助文档,然而不包括php.net的评论数据。复杂的试专心得以下:
装置pman
利用传说中的pear来装置pman
sudo pear install doc.php.net/pman
假如pear版本对照老,需求先晋级pear才可以持续
sudo pear upgrade pear
pman利用办法
pman的利用办法很傻瓜,好比咱们想检查strlen的匡助信息:
pman strlen
匡助文本的内容是黑色的,能和chm版本的php匡助文档媲美。pman的具体利用匡助以下
#pman --help
man, version 1.6c
usage: man [-adfhktwW] [section] [-M path] [-P pager] [-S list]
[-m system] [-p string] name ...
a : find all matching entries
c : do not use cat file
d : print gobs of debugging information
D : as for -d, but also display the pages
f : same as whatis(1)
h : print this help message
k : same as apropos(1)
K : search for a string in all pages
t : use troff to format pages for printing
w : print location of man page(s) that would be displayed
(if no name given: print directories that would be searched)
W : as for -w, but display filenames only
C file : use `file' as configuration file
M path : set search path for manual pages to `path'
P pager : use program `pager' to display pages
S list : colon separated section list
m system : search for alternate system's man pages
p string : string tells which preprocessors to run
e - [n]eqn(1) p - pic(1) t - tbl(1)
g - grap(1) r - refer(1) v - vgrind(1)
还有一个优点是在vim里检查php匡助信息更便利了,联合完善
:!pman strlen
<P style="TEXT-INDENT: 2em">
要想从事软件开发工作,那么,还有很多的知识要学习,其实,不管是以后想去从事哪个工作,都需要自己去利用空闲的时间去不断的学习新的知识,不断的充实自己。 |
|