2015-09-28 45 views
-5

A.上的代碼PHP書面意見

<?php 
/* 
* Create variable $number1 and $number2. 
*/ 
$number1 = 3; 
$number2 = 4; 

/* 
* Perform addition and display total on web page. 
*/ 
$total = $number1 + $number2; 
echo $total; 
?> 

B.

<?php 
/* 
* - Create variable $number1 and $number2. 
* - Perform addition and display total on web page. 
*/ 
$number1 = 3; 
$number2 = 4; 
$total = $number1 + $number2; 
echo $total; 
?> 

我還想寫在代碼中的註釋。 我應該選擇哪一個?
歡迎任何其他寫評論的方式。
我只想學習寫評論的好方法。

+2

http://www.phpdoc.org/ – DeDee

+1

您在詢問之前是否進行了一些搜索? – kakajan

回答

1

作爲開始,理解像

/*** 
* comment 
*/ 

// comment 

C樣式註釋comments之間的差被納入OpCached代碼,佔用額外存儲器,一個行註釋別t

0

你可以在google上輕鬆找到它。 無論如何,你使用的評論是爲了更多的句子。 還有一種方法只有一個使用//。