php fopen, str_replace

0 Cevap php

Ben, bir dosyayı açmak bazı içerik (77348 ile 12345) değiştirmek ve kaydetmek gerekir. Bildiğim kadarıyla

 var

$cookie_file_path=$path."/cookies/shipping-cookie".$unique; $handle = fopen($cookie_file_path, "r+"); $cookie_file_path = str_replace("12345", "77348", $cookie_file_path);

fclose ($ handle);

However it doesn't seem to work .... I would appreciate any help!

0 Cevap