php write 中文名,PHP fwrite 的别名

用户评论:

Nile River (2010-12-11 10:54:01)

This will create a visitor count for your webpage

$filename='sitevisitors.txt';

if (file_exists($filename))

{$count=file('sitevisitors.txt');$count[0] ++;$fp=fopen("sitevisitors.txt","w");fputs($fp,"$count[0]");fclose($fp);

echo$count[0];

}

else

{$fh=fopen("sitevisitors.txt","w");

if($fh==false)

die("unable to create file");fputs($fh,1);fclose($fh);$count=file('sitevisitors.txt');

echo$count[0];

}?>

camilord at kagayan dot com (2009-02-12 18:47:32)

Here's a sample using fputs() function... it may be useful like making logs visiting your website by recording the IP address.

that's it... :)

-- camilord

stalker at ruun dot de (2005-09-14 12:08:29)

rembert at floating-point dot nl (2002-11-21 04:03:12)

Adding to Adam (Nedstat):

fputs without the length parm just writes all data up to but not including the first 0 byte it encounters.

Therefore fputs($fp,"hello\0world") will only write hello to $fp whereas

fputs($fp,"hello\0world",11) will write both words.

If this doesn't make sense for you, remember strings are always terminated with that 0 byte. Binary data doesn't have such a terminator byte as a 0 byte can be a completely valid piece of data therefore you always need to know the length of the binary datapart.

BTW strlen() is binary safe, so you can use that to get the length of the binary data part as well - this is different from C which counts the number of chars up to the 0 byte. So the example above could also be written as:

fputs($fp,"hello\0world",strlen("hello\0world"))

yvan dot rivard at cesart dot com (2001-04-17 14:52:32)

This might seem silly for experienced users, but this bugged me for about two hours (searching and trying to debug the damn thing).

If you're on a Windows system doing tests on a Linux/Apache setup, and you're writing stuff to a text file (then load that file to see if your content is being written properly) and you realize only your first string is in there, your problem is not your Windows, not Linux and not Apache. It's probably Samba (the thing that makes it possible for your Linux and Windows boxes to talk to each other) that's caching your file... Try viewing your file via telnet or simply copy your file then read that copy.

You can see content is being written to your file anyway, because even though you don't see your new content (using notepad for example), you do see your filesize increasing as you add more text to your file.

(2000-10-08 00:07:56)

You can use here-documents in PHP but not for printing to a file pointer.

There's a lot to say on them so just go to the page: http://www.php.net/manual/language.types.string.php

Doug at Here dot Com (2000-06-30 17:46:36)

The way I understand fputs (which is purported as an alias to fwrite which can be "Binary Safe")...

$fp=fopen("something.txt","w");$string="Hello World\\n";// escape the slash from being magically

// being transformed into a newlinefwrite($fp,$string);// will proccess /n as newline ...fwrite($fp,$string,strlen($string));// will write the entire string to file without changing the '/n'

// into a single byte for newline on Unix-like machines or CR/LF on Win32 machines?>

Hope this helps explain the definition of "could be Binary Safe". This is the reason why you must specify the length!

--Doug

adam at nedstat dot nl (1999-06-16 08:19:46)

A note about including length: if you are writing binary data you should *always* specify the data's length. The reason is that the operating system has a special character to denote end of *strings*, but not for binary data. Binary data can be anything, so you can't very well reserve an end-of-data character. So the reason why writing binary data without specifying it's length can truncate it is that the only thing the system has to go on (without writing the entire contents of memory starting at the variable's address) is the end-of-string character, which could very well appear randomly in the middle of your set of binary data. The reason that length() could have worked on the variable is that it is implemented in C as sizeof(), which actually fetches the size of the memory chunk associated with the variable, but this is not advisable because sizeof() can also return the size of the *pointer* to the variable if you're not careful (ie, passing it by reference into a second function). In C it's best to keep track of size of the data you are accumulating as you accumlate it, so probably in PHP, too.

bschuetz at affinity dot net (1998-12-22 19:30:56)

Length is required if you are writing out a lot of data. For instance, if you are base64 decoding an email attachment and writing it out to a file you have to specify the length if the file is over a certian size or else the binary data will be corrupt.

fputs($fp,$binary,strlen($binary));

Will yield the desired results.

When tested with a 1k the length wasn't required but with a larger file, around 27k it needs the length to work properly.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值