From 0d65cc9d6c9be0943c41ec172f3e1cb9f2bdf5c0 Mon Sep 17 00:00:00 2001 From: Damien Seguy Date: Mon, 22 Nov 2004 15:50:06 +0000 Subject: [PATCH] file_set_contents -> file_put_contents git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@173230 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/wrappers.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appendices/wrappers.xml b/appendices/wrappers.xml index de2cb654af..d203c85d11 100644 --- a/appendices/wrappers.xml +++ b/appendices/wrappers.xml @@ -1,5 +1,5 @@ - + List of Supported Protocols/Wrappers @@ -584,7 +584,7 @@ readfile("php://filter/read=string.toupper|string.rot13/resource=http://www.exam /* This will filter the string "Hello World" through the rot13 filter, then write to example.txt in the current directory */ -file_set_contents("php://filter/write=string.rot13/resource=example.txt","Hello World"); +file_put_contents("php://filter/write=string.rot13/resource=example.txt","Hello World"); ?> ]]>