我想保留使用双面模式添加的空白页面,但是我想从编号中删除这些页面。在使用单面模式时,在本章结尾处使用function GetRandomWord()
{
$file = "../Core/nouns0.txt";
$file_arr = file($file);
$num_lines = count($file_arr);
$last_index = $num_lines -1;
$rand_index = rand(0, $last_index);
$rand_text = $file_arr[$rand_index];
return $rand_text;
}
$enc = GetRandomWord();
$encrypted = sha1("$username:$password:$enc");
echo $encrypted;
和\clearpage
手动强制空白页也不会这样做。我的意思是完全使用这些命令仅给出简单的页面,但在编号时仍予以考虑。