Home | Mirror | Search

第 12 章 Coding

目錄

1. php 檔案
1.1. 格式
1.2. 編碼
1.3. 取出行尾的空格以及多餘的換行符
1.4. php 標籤
1.5. 頭部註釋
2. String
3. Database
3.1. 結果集使用注意事項
3.2. 索引
3.3. 緩存

1. php 檔案

1.1. 格式

使用 UNIX 風格換行, 請在你的編輯器內調整

UNIX (LF或"\n")
MAC OS (CR 或"\r")
Windows CRLF \r\n
			

1.2. 編碼

UTF-8

有些IDE環境 UTF-8 BOM

1.3. 取出行尾的空格以及多餘的換行符

一個空格占用一個位元組,換行符Window是兩個位元組\r\n, Unix與Mac占用一個位元組

1.4. php 標籤

禁止這樣使用

			
<?
...
?>
			
			

正確的使用方法

			
<?php
...

or

<?php
...
?>
			
			

1.5. 頭部註釋

			
<?php
/**
 * Project Name
 *
 * @author     $Author: netkiller $
 * @copyright  Copyright (c) 2012 Company
 * @version    $Id: chapter.coding.xml 449 2012-08-10 10:38:08Z netkiller $
 */

<?php
/**
 * Project Name
 *
 * @author     $Author: netkiller $
 * @license    GNU General Public License 2.0
 * @version    $Id: chapter.coding.xml 449 2012-08-10 10:38:08Z netkiller $
 */
			
			
comments powered by Disqus