mirror of
https://github.com/php/doc-ru.git
synced 2025-07-27 13:01:13 +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"?>
|
||||
<!-- EN-Revision: 79dcbe011fb254dcd92c597064571fe313362a09 Maintainer: shein Status: ready -->
|
||||
<!-- Reviewed: yes -->
|
||||
<!-- EN-Revision: 217fa0d006cf292e837bab6458b81341718eb35e Maintainer: shein Status: ready -->
|
||||
<!-- Reviewed: yes Maintainer: sergey -->
|
||||
<!-- $Revision$ -->
|
||||
|
||||
<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_exec($ch);
|
||||
if(curl_error($ch)) {
|
||||
fwrite($fp, curl_error($ch));
|
||||
}
|
||||
curl_close($ch);
|
||||
fclose($fp);
|
||||
?>
|
||||
|
Reference in New Issue
Block a user