fwrite function in php with example in hind :
इस
Function
का
use
file में
data
को
write
करने
के लिए किया जाता है यहाँ
Function
2 पेरामीटर
लेता है पहला पेरामीटर उस file
का
reffrence
होता
है जिसमे data
को
write
करना
है तथा दूसरा पेरामीटर वह data
होता
है जिसे write
करना
है
syntax
:
fwrite($file,$data);
Example
:
<?php
$file
= fopen("a1.txt","w");
$msg="Engineersworld.in";
fwrite($file,$msg);
fclose($file);
?>
Comments
Post a Comment