在unix系列用 \n
在windows系列用 \r\n
在mac用 \r
PHP中可以用PHP_EOL来替代,以提高代码的源代码级可移植性
比如:
echo PHP_EOL;
//windows平台相当于 echo "\r\n";
//unix\linux平台相当于 echo "\n";
//mac平台相当于 echo "\r";
我们可以用函数get_defined_constants()来获取所有PHP常量。
class Page {
// 分页栏每页显示的页数
public $rollPage = 6;
// 页数跳转时要带的参数
public $parameter ;
// 默认列表每页显示行数
public $listRows = 20;
// 起始行数
public $firstRow ;
// 分页总页面数
protected $totalPages ;
// 总行数
protected $totalRows ;
// 当前页数
protected $nowPage ;
// 分页的栏的总页数
protected $coolPages ;
// 分页显示定制
protected $config = array(
'redirect'=>false,
'header'=>'条记录',
'prev'=>'上一页',
'next'=>'下一页',
'first'=>'1',
'last'=>'最后一页',
'theme'=>' <div >%upPage% %first% %prePage% %linkPage% %nextPage% %downPage%</div> <div >共 %totalPage% 页');
// 默认分页变量名
protected $varPage;
/**
+----------------------------------------------------------
* 架构函数
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
* @param array $totalRows 总的记录数
* @param array $listRows 每页显示记录数
* @param array $parameter 分页跳转的参数
+----------------------------------------------------------
*/
public function __construct($totalRows,$listRows='',$parameter='') {
$this->totalRows = $totalRows;
$this->parameter = $parameter;
$this->varPage = C('VAR_PAGE') ? C('VAR_PAGE') : 'p' ;
if(!empty($listRows)) {
$this->listRows = intval($listRows);
}
$this->totalPages = ceil($this->totalRows/$this->listRows); //总页数
$this->coolPages = ceil($this->totalPages/$this->rollPage);
//$_GET验证
$this->nowPage = intval($_GET[$this->varPage]);
$this->nowPage = $this->nowPage > 0 ? $this->nowPage : 1;
if(!empty($this->totalPages) && $this->nowPage>$this->totalPages) {
$this->nowPage = $this->totalPages;
}
$this->firstRow = $this->listRows*($this->nowPage-1);
}
public function setConfig($name,$value) {
if(isset($this->config[$name])) {
$this->config[$name] = $value;
}
}
/**
+----------------------------------------------------------
* 分页显示输出
+----------------------------------------------------------
* @access public
+----------------------------------------------------------
*/
public function show() {
if(0 == $this->totalRows) return '';
//处理参数
$p = $this->varPage;
$url = $_SERVER['REQUEST_URI'].(strpos($_SERVER['REQUEST_URI'],'?')?'':"?").$this->parameter;
$parse = parse_url(/blog_article/$url/index.html);
if(isset($parse['query'])) {
parse_str($parse['query'],$params);
unset($params[$p]);
$url = $parse['path'].'?'.http_build_query($params);
}
/* 分页逻辑 */
//当总数小于显示的页码数
if ($this->totalPages <= $this->rollPage) {
$start = 1;
$end = $this->totalPages;
}
else{
//
if ($this->nowPage <= $this->rollPage - 1) {
$start = 1;
$end = $this->rollPage;
$islast = true;
}
else if ($this->nowPage > $this->totalPages - $this->rollPage + 1) {
$start = $this->totalPages - ($this->rollPage - 1);
$end = $this->totalPages;
$isfirst = true;
}
else{
//浮动数
$size = floor($this->rollPage / 2);
$start = $this->nowPage - $size;
$end = $this->nowPage + $size;
$isfirst = true;
$islast = true;
}
}
//上下翻页字符串
$upRow = $this->nowPage - 1;
$downRow = $this->nowPage + 1;
/* 拼装HTML */
//< 1... ...last >
if ($isfirst){
$theFirst = "<a href='".$url."&".$p."=1' >".$this->config['first']."</a>";
}
if ($islast){
$theEnd = "<a href='".$url."&".$p."=$this->totalPages' >".$this->config['last']."</a>";
}
if ($upRow > 0){
$upPage = "<a href='".$url."&".$p."=$upRow'>".$this->config['prev']."</a>";
}
if ($downRow <= $this->totalPages){
$downPage = "<a href='".$url."&".$p."=$downRow'>".$this->config['next']."</a>";
}
if($start==3){
$linkPage .= "<a href='".$url."&".$p."=2'>2</a>";
}
if($start>=4){
$linkPage .= "<a href='".$url."&".$p."=2'>2</a> <span >...</span>";
}
//1 2 3 4 5
for($i=$start;$i<=$end;$i++){
if($i!=$this->nowPage){
$linkPage .= " <a href='".$url."&".$p."=$i'> ".$i." </a>";
}else{
$linkPage .= " <span >".$i."</span>";
}
if($i==$end){
if($i<$this->totalRows){
$linkPage .= " <span >...</span>";
}
}
}
$pageStr = str_replace(
array('%header%','%nowPage%','%totalRow%','%totalPage%','%upPage%','%first%','%prePage%','%linkPage%','%nextPage%','%downPage%','%end%'),
array($this->config['header'],$this->nowPage,$this->totalRows,$this->totalPages,$upPage,$theFirst,$prePage,$linkPage,$nextPage,$downPage,$theEnd),$this->config['theme']);
//显示模式 普通false 带跳转ture
if (!empty($this->config['redirect'])){
$html = $pageStr;
}else{
//传递参数
if($this->totalPages > 1){
$redirect = " 到第 <form method='get' action=''><input name=".$p." type='text' size='3' maxlength='3' value='" . $this->nowPage ."'/> 页 <input type='submit' value='确定' />";
if ($params){
foreach($params as $k => $v){
$string .= "<input type='hidden' name='" . $k . "' value='" . $v . "'/>";
}
$redirect = $redirect . $string . '</form></div>';
}else{
$redirect = $redirect . '</form></div>';
}
}
//生成Html字符串
$html = $pageStr . $redirect;
}
return $html;
}
}
1. VC6与VC9的区别:
VC6版本是使用Visual Studio 6编译器编译的,如果你的PHP是用Apache来架设的,那你就选择VC6版本。
VC9版本是使用Visual Studio 2008编译器编译的,如果你的PHP是用IIS来架设的,那你就选择 VC9版本。
VC9版本是针对IIS服务器的版本,没有对APACHE的支持,而VC6版本对IIS和apache都提供了支持
2.Ts与nts的区别:
Windows版的PHP从版本5.2.1开始有Thread Safe和NoneThread Safe之分。
先从字面意思上理解,Thread Safe是线程安全,执行时会进行线程(Thread)安全检查,以防止有新要求就启动新线程的CGI执行方式而耗尽系统资源。Non Thread Safe是非线程安全,在执行时不进行线程(Thread)安全检查。
3.PHP的两种执行方式:ISAPI和FastCGI。
ISAPI执行方式是以DLL动态库的形式使用,可以在被用户请求后执行,在处理完一个用户请求后不会马上消失,所以需要进行线程安全检查,这样来提高程序的执行效率,所以如果是以ISAPI来执行PHP,建议选择ThreadSafe版本;
而FastCGI执行方式是以单一线程来执行操作,所以不需要进行线程的安全检查,除去线程安全检查的防护反而可以提高执行效率,所以,如果是以FastCGI来执行PHP,建议选择NonThread Safe版本。
通过phpinfo(); 查看其中的 Thread Safety 项,这个项目就是查看是否是线程安全,如果是:enabled,一般来说应该是ts版,否则是nts版。