Satır başına Textfile birinde mağaza e-postalar

0 Cevap

Bir kullanıcı Sitemde bir sayfa girdiğinde bu kod parçacığını Kullanıcıların e-posta işler: ...

$email=$userprofile->email;

... Bu gibi yankı:

<?php echo $email;?>

ama bunu nasıl benim satıra bir e-posta ile seçtiğiniz bir dizin veya klasördeki bir metin dosyasında saklamak istiyorsunuz? teşekkürler

ben bu denedim ama işe alışkanlık

<?php
$file = 'http://mydomain.com/file/email.txt';
// Open the file to get existing content

// Write the contents back to the file
file_put_contents($file, $email);
?>

0 Cevap