wangyouworld 的所有文章

关于 wangyouworld

你为什么登山,因为山在那里。

闲翻野史,知道宋代有个廉之如,乃一隐士,早年应试不第,后结庐于青山绿水之间,房前栽花,屋后种菜,庭插细柳,室藏万卷。每有友来,穿庭入室,皆染一身清馨,于万卷之间,促膝而谈。廉之如兴之所至,也会远游访友。一次,他远赴江阴访一故旧,近室而门已开,故人笑迎而出。他诧问:“我没有捎信给你,怎么就知我来呢?”故人答到:“远闻其香,而知君至矣!”这里所说的香气,不是指廉之如庭花之香,亦不是指书卷之香,而是指他人格之魅力。 继续阅读 闻香识人[包利民]

It is not often that you can write a PHP script that does not need to include the contents of different files as part of it’s output. If these includes happen to be php scripts themselves you have no choice but to use require or include. However more often than not, the contents are static, usually html template component. With static includes you have many more options available. aerwear We will analyse some of these functions to find out which one is most suitable when dealing with files with static content. We use the term function loosely, because require and include are not real functions but language constructs. 继续阅读 PHP各种读取文件的函数效率对比