Fatal error: Call to unsupported or undefined function foo() in /home/bar/public_html/test.php3 on line 22 |
$fp = fsockopen("www.hoge.com", 80); fputs($fp, "GET / HTTP/1.0\n\n"); while (!feof($fp)) { $line = fgets($fp, 1024); if ($line == "\n") { // 空行が来たら、ヘッダーフィールドの終わり break; } while (!feof($fp)) { $line = fgets($fp, 1024); print $line; } fclose($fp); |
(...snip...) if ($line == "\r\n") { ~~~~ 修正 // 空行が来たら、ヘッダーフィールドの終わり break; } (...snip...) |
Warning: Sorry, but this font doesn't contain any Unicode mapping table in /home/foo/public_html/ttf.php3 on line 9 Warning: Cannot add more header information - the header was already sent (header information may be added only before any output is generated from the script - check for text or whitespace outside PHP tags, or calls to functions that output text) in /home/foo/public_html/ttf.php3 on line 11 Warning: Cannot add more header information - the header was already sent (header information may be added only before any output is generated from the script - check for text or whitespace outside PHP tags, or calls to functions that output text) in /home/foo/public_html/ttf.php3 on line 12 臼NG ^Z ~B |
; internationalization i18n.http_output = SJIS i18n.internal_encoding = EUC-JP i18n.script_encoding = auto i18n.http_input = auto i18n.http_input_default = SJIS |
<?php i18n_http_output("SJIS"); (...snip...) while (!feof($fp)) { $line = fgets($fp, 1024); echo i18n_convert($line, "SJIS"); } (...snip...) ?> |
; internationalization i18n.http_output = SJIS i18n.internal_encoding = EUC-JP i18n.script_encoding = auto i18n.http_input = auto i18n.http_input_default = SJIS |
echo i18n_convert($line, "SJIS", "JIS"); |
<HTML> <HEAD> <META HTTP-EQUIV="Pragma" CONTENT="no-cache"> </HEAD> <BODY> <IMG SRC="./test.png"> </BODY> </HTML> |
<META HTTP-EQUIV="Pragma" CONTENT="no-cache"> <META HTTP-EQUIV="Refresh" CONTENT="30"> <META HTTP-EQUIV="Expires" CONTENT="0"> |
ブラウザ | META 指定なし | no-cache 指定あり | no-cache & Refresh 指定あり | |||
---|---|---|---|---|---|---|
画像の自動読込み OFF | 画像の自動読込み ON | 画像の自動読込み OFF | 画像の自動読込み ON | 画像の自動読込み OFF | 画像の自動読込み ON | |
IE | NG | OK | NG | OK | NG | OK |
NN | NG | NG | NG | NG (*1) | NG | OK |
<?php echo "<IMG src=\"./test.png?dummy=" . microtime() . "\">\n"; ?> |
$defaultpage = "[[なんとか ABC プロジェクト]]"; |
なんとか ABC プロジェクト は編集できません |
server.example.co.jp +----------+ ------------------------| PukiWiki |--------------------------- +----------+ <A href="http://server.example.co.jp/hoge/"> こちらからは ---> <--- こちらのセグメントからは アクセス OK IP アドレス指定で FrontPage には アクセスできるのだが、 その先のリンクを辿ろうとすると server.example.co.jp には アクセスできないため行けない
if($script == "") { $script = (getenv('SERVER_PORT')==443?'https://':('http://')).getenv('SERVER_NAME').\ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 削除 (getenv('SERVER_PORT')==80?'':(':'.getenv('SERVER_PORT'))).getenv('SCRIPT_NAME'); ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 削除 } |