関数は、関数名・開きカッコおよび最初のパラメータそれぞれの間には空白を置かず、
カンマとパラメータ間には空白を置き、最後のパラメータと閉カッコ
およびセミコロンの間には空白を置かずにコールします。
例を示します。
<?php
$var = foo($bar, $baz, $quux);
?>
|
上記のように、関数の返り値を変数に代入する際に使用する等号の左右には、
空白を1つづつ置きます。関連する一連の代入文については、
可読性を向上させるために空白を複数置いても良いでしょう。
<?php
$short = foo($bar);
$long_variable = foo($baz);
?>
|
|
制御構造 (Previous)
|
(Next) クラス定義
|
|
|
Download Documentation
|
Last updated: Sun, 06 Jul 2008 |
|
Do you think that something on this page is wrong? Please file a bug report or add a note.
|
| User Notes: |
Note by: user@example.com
In a well written code you shouldn't use find/replace. Especially a mindless find/replace. If so take your time.
Note by: aheinz@lulu.com
Adding spaces for horizonal justification improves readability until you do a search/replace on a variable name. This practice should be discouraged.
|
|