Skip to content

Commit

Permalink
Atualiza as traduções para a versão atual do texto.
Browse files Browse the repository at this point in the history
  • Loading branch information
André L F S Bacci committed Aug 14, 2023
1 parent 5530b3e commit 0d8b9cb
Show file tree
Hide file tree
Showing 5 changed files with 110 additions and 393 deletions.
46 changes: 35 additions & 11 deletions reference/curl/functions/curl-exec.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: b7f8c11e56ff1c57a2993e2ed7e5c5ace18637fd Maintainer: enzogamads Status: ready --><!-- CREDITS: enzogamads, fernandoc -->
<!-- EN-Revision: b7f8c11e56ff1c57a2993e2ed7e5c5ace18637fd Maintainer: enzogamads Status: ready --><!-- CREDITS: enzogamads,fernandoc,ae -->
<refentry xml:id="function.curl-exec" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>curl_exec</refname>
Expand All @@ -9,14 +9,14 @@
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>mixed</type><methodname>curl_exec</methodname>
<methodparam><type>resource</type><parameter>ch</parameter></methodparam>
<type class="union"><type>string</type><type>bool</type></type><methodname>curl_exec</methodname>
<methodparam><type>CurlHandle</type><parameter>handle</parameter></methodparam>
</methodsynopsis>
<para>
Execute a sessão cURL fornecida.
</para>
<para>
Esta função deve ser chamada após inicializar uma sessão cURL e todas
Esta função deve ser chamada após inicializar uma sessão cURL e todas
as opções para a sessão são definidas.
</para>
</refsect1>
Expand All @@ -37,8 +37,33 @@
estiver <link linkend="function.curl-setopt">definida</link>, ela retornará
o resultado em caso de sucesso, &false; em caso de falha.
</para>
&return.falseproblem;
<note>
<para>
Observe que os códigos de retorno que indicam erros (como por exemplo <literal>404
Not found</literal>) não são tratados como falhas.
Use <function>curl_getinfo</function> para verificar esses casos.
</para>
</note>
</refsect1>


<refsect1 role="changelog">
&reftitle.changelog;
<informaltable>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
&curl.changelog.handle-param;
</tbody>
</tgroup>
</informaltable>
</refsect1>

<refsect1 role="examples">
&reftitle.examples;
<para>
Expand All @@ -47,25 +72,25 @@
<programlisting role="php">
<![CDATA[
<?php
// create a new cURL resource
// Cria um novo recurso cURL
$ch = curl_init();
// set URL and other appropriate options
// Confiura a URL e opções
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch, CURLOPT_HEADER, 0);
// grab URL and pass it to the browser
// Obtem os dados
curl_exec($ch);
// close cURL resource, and free up system resources
// Fecha o recurso e libera recursos internos
curl_close($ch);
?>
]]>
</programlisting>
</example>
</para>
</refsect1>

<refsect1 role="seealso">
&reftitle.seealso;
<para>
Expand All @@ -76,7 +101,6 @@ curl_close($ch);
</refsect1>

</refentry>

<!-- Keep this comment at the end of the file
Local variables:
mode: sgml
Expand Down
Loading

0 comments on commit 0d8b9cb

Please sign in to comment.