PHP
chengest
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
substr(dirname(__FILE__), 0, -7))
在dizcuz的common.inc.php文件里有一个:define('DISCUZ_ROOT', substr(dirname(__FILE__), 0, -7)); 在sablog的common.php文件里有一个:define('SABLOG_ROOT', substr(dirname(__FILE__), 0, -7)); 一直不理解是什么意思... 今天查了手册... ...2009-04-29 11:26:07 · 359 阅读 · 0 评论 -
PHP名词库
什么是PHP? php是Hypertext Preprocessor的缩写,php是一种内嵌HTML的脚本语言。PHP的独特语法混合了c,java和perl及PHP式的新语法。这门语言的的目标是让网页开发人员快速的写出动态的网页。 什么是PHPer? PHP programmer,指编写PHP的程序员 什么是模式? 模式,即pattern。其实就是解决某一类问题的方法论。你把解决...原创 2009-05-01 20:45:21 · 154 阅读 · 0 评论 -
php 操作 MySQL
[code="php"] if(!defined("WEB_ROOT")){ exit("Access Deny !"); } class DB_MySQL { function DB_MySQL($servername, $dbusername, $dbpassword, $dbname, $usepconnect){ $this->server = $serv...2009-05-04 07:55:13 · 138 阅读 · 0 评论 -
Smarty 循环 section
[code="html"] 共{$page_count}页 {$art_count}篇文章 每页{$page_size}篇 {section name=pagelink start=1 loop=$page_count+1 step=1} {$smarty.section.pagelink.index} {/section} ...2009-05-05 10:12:14 · 175 阅读 · 0 评论 -
php 正则表达式
[code="php"] $mail='regfor@google.com'; if(preg_match('/^[a-zA-Z0-9_\.]+@[a-zA-Z0-9-]+[\.a-zA-Z]+$/',$mail)){ echo 'email is right'; }else{ echo 'email is wrong'; } [/code]2009-05-06 15:48:41 · 233 阅读 · 0 评论 -
用switch实现小型站点模块化
[code="php"] //error_reporting(E_ALL); //exit(); /** * Site Index File * * 声明: * 本站是一个开放源代码的网站 * * @author yunest * @version 1.0 2009-05-13 8:49 $ */ // Include the common fil...2009-05-13 09:05:15 · 196 阅读 · 0 评论
分享