Home > Backend Development > PHP Tutorial > Delete multiple static pages generated by an article under PHP_PHP tutorial

Delete multiple static pages generated by an article under PHP_PHP tutorial

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-07-21 15:34:59
Original
758 people have browsed it

Copy the code The code is as follows:

//– Delete multiple static pages generated by an article
//– Generated The article name is 5.html 5_2.html 5_3.html
/*—————————————————————— */
function delStaticHtml ($article_id)
{
global $db;
$sql = "SELECT `post_time` FROM `@__article` WHERE `article_id` = '{$article_id}'";
$art = $db->getOne ($ sql);
if ($art)
{
$n = 1;
$html_dir = '../html/'.date('Ym',$art['post_time'] ).'/';
$filename = $html_dir.$article_id.'.html';
while (file_exists($filename))
{
@unlink($filename);
$n++;
$filename = $html_dir.$article_id.'_'.$n.'.html';
}
}
return false;
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/322318.htmlTechArticleCopy the code as follows: //– Delete multiple static pages generated by an article //– Generated article Named 5.html 5_2.html 5_3.html /*——————————————————...
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template