2017-05-12 19 views
2

私はPHPにはかなり慣れていて、共同学習者のためにコミュニティの学習コードを作成しようとしています。コメントにコーディングのヒントを入れたいと思います。私は、次のように書いてみました:?>をPHPのコメントに追加する

# Tip -- when PHP is the only code in a file, don't put ?> at the end as this can cause bugs if white-space or additional PHP code is written to the end of the file after the file is initially created, after the ?> 

しかし、コメントに?>を入力すると、ファイルやコメントを終了します。どのように私はこれをエスケープするのですか?私は\を使ってみましたが、それはうまくいかず、またコメントの意味を混同します。

これはどのように行われますか?

+3

/* */ – manian

+0

のように複数行のコメントを使用してみてください... –

答えて

2

終了タグと開始タグを使用して、単一の並んだコメントでPHPがうまく動作しません。このComment Documentation for PHPに記載されている

/* Tip -- when PHP is the only code in a file, don't put ?> at the end as this can cause bugs if white-space or additional PHP code is written to the end of the file after the file is initially created, after the ?> */ 

注:あなたはムーティ並んコメントを使用できますが

「1行」のコメントスタイルは、唯一のラインや、現在の最後にコメントPHPコードのブロック、どちらか早い方。これは、// ...?>または#...?>の後のHTMLコードが出力されることを意味します:?> PHPモードから抜け出し、HTMLモードに戻り、#または#がそれに影響を与えることはできません。

関連する問題