|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[1998-05-01 14:31 UTC] jim
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 17:00:01 2025 UTC |
Let's say that "quotation" file has only five quotation mark. (that is, """"") and execute following php-script <?php $fp = fopen("quotation", "r"); echo fgets($fp, 100); ?> The result is \"\"\"\"\" of length 10, not 5.