saveslides.php.svn-base
来自「prototype 实现网络相册的ajax界面。」· SVN-BASE 代码 · 共 22 行
SVN-BASE
22 行
<?phprequire('../config.php');require('slideshows.inc.php');$allHeaders=apache_request_headers();$slideName=$allHeaders['X-SLIDENAME'];$postBody=$HTTP_RAW_POST_DATA;if ($slideName!=null && $postBody!=null){ $filename=$basedir.'/../slides/'.$slideName.'.slides'; $filehandle=fopen($filename,'w'); fwrite($filehandle,$postBody); fclose($filehandle);}$slideshows=list_slideshows();if (count($slideshows)>0){ $slideshow_list='"'.implode('","',$slideshows).'"';}$json='{ action:\'save\', slideshows:['.$slideshow_list.'] }';header('X-JSON: '.$json);?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?