Richard Quadling
605539d771
Documented flags.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@291640 c90b9560-bf6c-de11-be94-00142212c4b1
2009-12-03 11:52:18 +00:00
Jakub Vrana
201dc3748c
Prefer <initializer> before "defaults to"
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@291313 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-25 14:49:47 +00:00
Jakub Vrana
52d41fb3ab
Uses 512B blocks (bug #46991 )
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@291063 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-20 11:04:26 +00:00
Jakub Vrana
7f5fbb545c
Fix build
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290977 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-19 11:14:49 +00:00
Jakub Vrana
7f6c594220
Overwriting handle would release the log (bug #48308 )
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290972 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-19 10:37:00 +00:00
Jakub Vrana
8b80fc1009
LOCK_NB can be added
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290971 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-19 10:25:05 +00:00
Richard Quadling
9785d7ff62
Updated return types for invalid file handle. Updated example to include error checking for fopen(). Fix # 50221
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290968 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-19 08:53:30 +00:00
Jakub Vrana
9b7733b978
Fix example (bug #50177 )
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290804 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-16 11:19:59 +00:00
Jakub Vrana
3ce9368539
Utilize &return.falseforfailure;
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290704 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-13 21:37:00 +00:00
Jakub Vrana
22deb8e7df
Returns false in error (bug #49801 )
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290700 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-13 21:15:08 +00:00
Richard Quadling
47da5a1cef
Fixed example. Bug # 50122
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290412 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-09 12:22:07 +00:00
Richard Quadling
f658721332
Use &return.falseforfailure; entity.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290410 c90b9560-bf6c-de11-be94-00142212c4b1
2009-11-09 10:26:08 +00:00
Daniel Convissor
4ad6a6d8e4
also mention in main description that it checks for existence.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@290078 c90b9560-bf6c-de11-be94-00142212c4b1
2009-10-30 14:59:33 +00:00
Daniel P. Brown
17b2fe0398
Fixes Bug #49892 .
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@289674 c90b9560-bf6c-de11-be94-00142212c4b1
2009-10-15 16:58:21 +00:00
Richard Quadling
17d11c7a0e
Fix example : Fix#49841
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@289616 c90b9560-bf6c-de11-be94-00142212c4b1
2009-10-13 11:46:54 +00:00
Elizabeth Marie Smith
fd2c5915d9
changed to "executable" fixes bug #49722
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288997 c90b9560-bf6c-de11-be94-00142212c4b1
2009-09-30 13:47:31 +00:00
Torben Wilson
af4410a7e1
Normalized the sgml-default-dtd-file local-variable line for those
...
still using this, after discussion on the phpdoc list.
From now on, manual.ced will need to be found at ~/.phpdoc/manual.ced.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288721 c90b9560-bf6c-de11-be94-00142212c4b1
2009-09-25 07:04:39 +00:00
Torben Wilson
67b72af27e
Noted that the maxlen param is actually not -1 but is instead an
...
internal value (PHP_STREAM_COPY_ALL) and may not be directly specified
from within a script.
Addresses bug #49038 (although perhaps this is better fixed in the long
term by making file_get_contents() behave normally).
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288188 c90b9560-bf6c-de11-be94-00142212c4b1
2009-09-09 07:31:53 +00:00
Torben Wilson
14e0c3062d
Removed a redundant use of LOCK_EX with FILE_APPEND in an example.
...
Addresses bug #49329 .
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288122 c90b9560-bf6c-de11-be94-00142212c4b1
2009-09-07 06:36:10 +00:00
Torben Wilson
c889127223
Note that in order to use a negative offset to count from the end of
...
the file, you must specify SEEK_END in the 'whence' parameter.
Addresses bug #47371 .
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@288029 c90b9560-bf6c-de11-be94-00142212c4b1
2009-09-04 07:28:53 +00:00
Peter Cowburn
bbb5333f08
Fixes #49044 broken sentence in fopen error docs
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@286621 c90b9560-bf6c-de11-be94-00142212c4b1
2009-08-01 12:35:48 +00:00
Peter Cowburn
9f24c92646
Fixed fgetss typo and trailing comma
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@284744 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-25 10:44:27 +00:00
Daniel P. Brown
c84aa28cba
Fixed "see also" section.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@284670 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-23 22:29:54 +00:00
Daniel P. Brown
db8326b02e
Fixed "see also" section.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@284669 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-23 22:29:40 +00:00
Daniel P. Brown
4e8d35424a
Fixed "see also" section.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@284668 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-23 22:29:20 +00:00
Daniel P. Brown
c23eee6021
Incorporates suggested change by aharvey@php.net as noted in Bug #48999 .
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@284629 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-23 02:53:22 +00:00
Nilgün Belma Bugüner
32c02d8b9f
fixed properties
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@283810 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-11 07:05:15 +00:00
Rasmus Lerdorf
81d318ad96
Don't use w+ in the example here
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@283282 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-01 20:15:16 +00:00
Hannes Magnusson
da86ca4641
Remove odd statement
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@283262 c90b9560-bf6c-de11-be94-00142212c4b1
2009-07-01 13:33:21 +00:00
Hannes Magnusson
e609b71e4b
fix language
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@283009 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-29 10:34:57 +00:00
Rasmus Lerdorf
2f23be37bf
Fix bug #48522 to make Gwynne happy.
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@282711 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-24 10:52:49 +00:00
Kalle Sommer Nielsen
5864c5a8ad
Fixed example being in wrong file
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@282485 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-21 01:58:48 +00:00
Pierre Joye
948411970b
- add a note about hard link on windows
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281807 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-08 09:42:11 +00:00
Hannes Magnusson
488cee7edb
Fixed bug#48467 (Wrong use of example)
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281619 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-03 21:42:41 +00:00
Pierre Joye
975ee68493
- be more precised in the changelog (even if we have this info in a note)
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281580 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-03 08:52:31 +00:00
Pierre Joye
8deeadcbc1
- be more precised in the changelog (even if we have this info in a note)
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281579 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-03 08:52:30 +00:00
Hannes Magnusson
2a16c46460
Fail. The example was correct, it was just the variable and api argument
...
naming that was so dead confusing :)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281567 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-02 21:01:45 +00:00
Hannes Magnusson
1edfcca722
- Fixed parameter order in the example
...
- Rename the arguments to to_path and from_path to be cristal clear
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281566 c90b9560-bf6c-de11-be94-00142212c4b1
2009-06-02 20:50:49 +00:00
Jakub Vrana
460e567981
Network stream
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@281274 c90b9560-bf6c-de11-be94-00142212c4b1
2009-05-28 09:00:55 +00:00
Kalle Sommer Nielsen
39befb28a0
Shouldn't have been in here
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@280436 c90b9560-bf6c-de11-be94-00142212c4b1
2009-05-13 08:14:03 +00:00
Kalle Sommer Nielsen
9168a10cb0
New example for parse_ini_string(), plus add ^ as one of the special characters in INI files
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@280435 c90b9560-bf6c-de11-be94-00142212c4b1
2009-05-13 08:12:43 +00:00
Florian Anderiasch
4793804cd1
fixed bug #48032
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279440 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-27 15:15:25 +00:00
Hannes Magnusson
a3be604733
The FILE_USE_INCLUDE_PATH can be used as of PHP 5
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279393 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-26 12:13:14 +00:00
Hannes Magnusson
dd3930696e
Mention that these only exist for fc, don't actually do anything until 6
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279392 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-26 11:48:55 +00:00
Hannes Magnusson
0850f319ac
- Remove version info (its already in the changelog)
...
- Add a note that these constants do exist since 5.2.7 (but dont do anything)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279391 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-26 11:48:23 +00:00
Hannes Magnusson
5a1b81985f
SELECT version FROM php ORDER BY desc;
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279390 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-26 11:47:34 +00:00
Florian Anderiasch
d38553cb2e
fixed bug #47778
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279096 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-21 03:11:56 +00:00
Florian Anderiasch
7fcdd3d18c
fixed bug #47834
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@279094 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-21 02:52:46 +00:00
Yannick Torres
07d7ec4107
correct markup
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278994 c90b9560-bf6c-de11-be94-00142212c4b1
2009-04-19 16:46:20 +00:00
Richard Quadling
059a9d812d
Bug#47843, grammar and entities
...
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@278058 c90b9560-bf6c-de11-be94-00142212c4b1
2009-03-31 08:17:17 +00:00