====== Web Editorのソース ====== Web Editorの説明については[[Web Editor/]]を見てください。 '; if ($code = array_get($_POST, 'code')) { if (file_put_contents($path, $code) === false) { $errMsg = 'error! (not saved)'; } } else if (is_file($path)) { $code = file_get_contents($path); } if (!$fileType = array_get($_POST, 'fileType')) { if (preg_match('/\.js$/i', $path)) { $fileType = 'javascript'; } else if (preg_match('/\.css$/i', $path)) { $fileType = 'css'; } else if (preg_match('/\.(|r)htm(|l)$/i', $path)) { $fileType = 'html'; } else if (preg_match('/\.rb$/i', $path)) { $fileType = 'ruby'; } else { $fileType = 'php'; } } ?> web editor - <?php echo h($path); ?>
file type 'PHP', 'ruby' => 'Ruby', 'html' => 'HTML', 'javascript' => 'JavaScript', 'css' => 'CSS'); foreach ($types as $type => $label) { echo '\n"; } ?>
file path [ Oepn "' . h($path) . '" (O) ]'; } ?>