mirror of
https://github.com/php/doc-ru.git
synced 2025-08-13 15:20:56 +00:00
docs(ru): Updated to English revision
git-svn-id: https://svn.php.net/repository/phpdoc/ru/trunk@348429 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<!-- EN-Revision: 79dcbe011fb254dcd92c597064571fe313362a09 Maintainer: shein Status: ready -->
|
<!-- EN-Revision: 217fa0d006cf292e837bab6458b81341718eb35e Maintainer: shein Status: ready -->
|
||||||
<!-- Reviewed: yes -->
|
<!-- Reviewed: yes Maintainer: sergey -->
|
||||||
<!-- $Revision$ -->
|
<!-- $Revision$ -->
|
||||||
|
|
||||||
<chapter xml:id="curl.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
<chapter xml:id="curl.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||||
@ -30,6 +30,9 @@ curl_setopt($ch, CURLOPT_FILE, $fp);
|
|||||||
curl_setopt($ch, CURLOPT_HEADER, 0);
|
curl_setopt($ch, CURLOPT_HEADER, 0);
|
||||||
|
|
||||||
curl_exec($ch);
|
curl_exec($ch);
|
||||||
|
if(curl_error($ch)) {
|
||||||
|
fwrite($fp, curl_error($ch));
|
||||||
|
}
|
||||||
curl_close($ch);
|
curl_close($ch);
|
||||||
fclose($fp);
|
fclose($fp);
|
||||||
?>
|
?>
|
||||||
|
Reference in New Issue
Block a user