$text = "строка которую нужно удалить/строка которую нужно оставить";
$done = strstr($text, '/');
echo $done;
/строка которую нужно оставить
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $file_zip . '"');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file_zip));
if (ob_get_level()) ob_end_clean();
readfile($file_zip);
exit;
$before = 1599627581;
$after = time();
if (($after - $before) >= 300)
{
echo 'Прошло 5 минут';
}
<?php
$before = 1599627581; # время от которого веси отсчет
$after = time(); # текущее время
$diff = 5; # сколько должно пройти минут
if (($after - $before) >= ($diff*60))
{
echo 'Прошло 5 минут';
}
$("button ").click(myfunc);
function myfunc(){
$("#block").html($('<input id="next" style="height: 50px;" class="form-control" name="login" placeholder="Insert"><br><button type="button" class="btn btn-primary" id="bth">Продолжить</button>'))
$("#bth").click(myfuns);
}
function myfuns() {
alert("Работает");
}
<?php
session_start();
$id_post = ... ;//якобы твоя переменная с id поста
if(isset($_POST['post_go']) {
$file_php = "posts/" . $id_post . "_post.html" ";
//Если файла нету...
if (!file_exists($file_php)) {
$fp = fopen($file_php, "w"); // ("r" - считывать "w" - создавать "a" - добавлять к тексту),мы создаем файл
fwrite($fp, '
//html разметка post
');
fclose($fp);
header("Location:" . $id_post . "_post.html" );
}
?>
<form action="index.php" method="POST">
<input type="submit" name="post_go">
</form>