質問するログイン新規登録

回答編集履歴

1

追記

2016/09/03 19:38

投稿

退会済みユーザー
answer CHANGED
@@ -3,6 +3,9 @@
3
3
  ```php
4
4
  <?php
5
5
 
6
+ ini_set('display_errors', 1);
7
+ error_reporting(E_ALL);
8
+
6
9
  function h($string)
7
10
  {
8
11
  return htmlspecialchars($string, ENT_QUOTES, 'utf-8');
@@ -31,4 +34,6 @@
31
34
  <?php endif; ?>
32
35
  </body>
33
36
  </html>
34
- ```
37
+ ```
38
+
39
+ [PHPマニュアル](https://secure.php.net/manual/ja/)