Görev: İlk yürüyüş-through sonra bir dosyayı kesin ya da silmek.
i başka bir php dosya oluşturur "index.php" adında bir yükleme dosyası var.
<?
/* here some code*/
$fh = fopen($myFile, 'w') or die("can't open file");
$stringData = "<?php \n
echo 'hallo, *very very long text*'; \n
?>";
fwrite($fh, $stringData);
/*herecut"/
/*here some code */
after the creation of the new file this file is called and i intent to erase the filecreation call since it is very long and only needed on first install.
i bunun yukarıdaki kodu eklemek
echo 'hallo, *very very long text*'; \n
***$new= file_get_contents('index.php'); \n
$findme = 'habanot';
$pos = strpos($new, $findme);
if ($pos === false) {
$marker='herecut';\n
$new=strstr($new,$marker);\n
$new='<?php \n /*habanot*/\n'.$new;\n
$fh = fopen('index.php', 'w') or die 'cant open file');
$stringData = $new;
fwrite($fh, $stringData);
fclose($fh);***
?>";
fwrite($fh, $stringData);]}
Daha kolay bir yolu veya geçerli dosyayı değiştirmek için bir işlev veya ilk aramadan sonra bile "kendini yok" bir dosya var değil mi?
Selamlar
EDIT: Özür Zaf için, düzenlemek için bir yol buldu
unlink(__FILE__);
yürütme sonrasında "yardımcı dosyayı" silmek için kullanılabilir.