Upload page content

You can upload content for the page named below. If you change the page name, you can also upload content for another page. If the page name is empty, we derive the page name from the file name.

File to load page content from
Page name
Comment

Locked History Actions

php/bugs

phpはバグだらけ

以下に記述するのはおそらくバグと思われるが、未確認。 この手のバグがあまりに多く、いちいち確認していられない。

正規表現のバグ

php-5.3.6-4.el5.remi

for ($i = 0; $i < 0x20; $i++) {
  $hex = sprintf("%04X", $i);
  $char = pack("H*", $hex);
  if (preg_match('/^[\x00-\x1F]$/', $char)) {
    print $hex;
  }
}

なぜか

000A

と表示される。