Bir dosya arayın ve göç arama terimi yeni bir dosya olduğunu

0 Cevap php

Bu kod, dosya henüz yoksa, bu dosyayı yaratacak, yeni bir. Txt dosyası oluşturmak için olanak sağlar.

<?php
$file = 'people.txt';
// Open the file to get existing content
$current = file_get_contents($file);
// Append a new person to the file
$current .= "John Smith\n";
// Write the contents back to the file
file_put_contents($file, $current);
?>

Ve burada bu kodu bir simge haline dize her satırı tanımlar.

<?php
$string = "This is\tan example\nstring";
/* Use tab and newline as tokenizing characters as well  */
$tok = strtok($string, " \n\t");

while ($tok !== false) {
    echo "Word=$tok<br />";
    $tok = strtok(" \n\t");
}
?>

People.txt bu gibi görünüyor

John Smith
John Meyer
John Chase 
John Smith    //i want to transfer this set of string into a new file

Ne ben burada eksik?

0 Cevap