本文整理汇总了PHP中FileUtil::writetofile方法的典型用法代码示例。如果您正苦于以下问题:PHP FileUtil::writetofile方法的具体用法?PHP FileUtil::writetofile怎么用?PHP FileUtil::writetofile使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FileUtil
的用法示例。
在下文中一共展示了FileUtil::writetofile方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createFile
function createFile($title, $type, $content)
{
//生成文件
$File = new FileUtil();
$File->writetofile(BASE_PATH . 'upload/webstyle/public/' . $type . '/' . $title . '.' . $type, $content);
return $codeFilePath = '/manage/upload/webstyle/public/' . $type . '/' . $title . '.' . $type;
}
示例2: DB
$db = new DB();
if (isset($_GET['id'])) {
$id = $_GET['id'];
$sql = "SELECT * FROM `webstyle_module` where id = " . $id;
$result = $db->get_one($sql);
$listHtml = $db->get_one('SELECT * FROM `webstyle_code` where id =' . $result['html']);
$listHtml['content'] = htmlspecialchars($listHtml['content']);
$result['html'] = $listHtml;
$listCss = $db->get_one('SELECT * FROM `webstyle_code` where id =' . $result['css']);
$result['css'] = $listCss;
$listJs = $db->get_one('SELECT * FROM `webstyle_code` where id =' . $result['js']);
$result['js'] = $listJs;
//print_r($result);
$tpl->assign("module", $result);
$tpl->display("webstyle/update.tpl");
}
if (isset($_POST['title'])) {
$File = new FileUtil();
$dataJs['content'] = $_POST['cssCode'];
$db->update('webstyle_code', $dataJs, 'id=' . $_POST['cssId']);
$File->writetofile(BASE_PATH . $_POST['cssFilePath'], $_POST['cssCode']);
$dataCss['content'] = $_POST['jsCode'];
$db->update('webstyle_code', $dataCss, 'id=' . $_POST['jsId']);
$File->writetofile(BASE_PATH . $_POST['jsFilePath'], $_POST['jsCode']);
$dataHtml['content'] = $_POST['htmlCode'];
$db->update('webstyle_code', $dataHtml, 'id=' . $_POST['htmlId']);
$File->writetofile(BASE_PATH . $_POST['htmlFilePath'], $_POST['htmlCode']);
$data['title'] = $_POST['title'];
$data['content'] = $_POST['content'];
$db->update('webstyle_module', $data, 'id=' . $_POST['id']);
}