mirror of
https://github.com/php/doc-fr.git
synced 2026-03-29 18:42:07 +02:00
git-svn-id: https://svn.php.net/repository/phpdoc/fr/trunk@158710 c90b9560-bf6c-de11-be94-00142212c4b1
76 lines
2.3 KiB
XML
76 lines
2.3 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.6 $ -->
|
|
<!-- EN-Revision: 1.10 Maintainer: yannick Status: ready -->
|
|
<refentry id="function.pg-update">
|
|
<refnamediv>
|
|
<refname>pg_update</refname>
|
|
<refpurpose>Modifie les lignes d'une table</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Description</title>
|
|
<methodsynopsis>
|
|
<type>mixed</type><methodname>pg_update</methodname>
|
|
<methodparam><type>resource</type><parameter>connection</parameter></methodparam>
|
|
<methodparam><type>string</type><parameter>table_name</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>data</parameter></methodparam>
|
|
<methodparam><type>array</type><parameter>condition</parameter></methodparam>
|
|
<methodparam choice="opt"><type>int</type><parameter>options</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<para>
|
|
<function>pg_update</function> modifie les lignes de la table
|
|
<parameter>table_name</parameter>, qui vérifient la condition
|
|
<literal>condition</literal>, et leur donne la valeur de <literal>data</literal>.
|
|
Si <literal>options</literal> est spécifié,
|
|
<function>pg_convert</function> est appliqué à
|
|
<literal>data</literal> avec les options spécifiées.
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>Exemple avec <function>pg_update</function></title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
$db = pg_connect ('dbname=foo');
|
|
$data = array('field1'=>'AA', 'field2'=>'BB');
|
|
|
|
// C'est correct, car $_POST est convertit automatiquement
|
|
$res = pg_update($db, 'post_log', $_POST, $data);
|
|
if ($res) {
|
|
echo "Les données ont été modifiées : $res\n";
|
|
} else {
|
|
echo "Problème dans les données utilisateur\n";
|
|
}
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
&warn.experimental.func;
|
|
<para>
|
|
Voir aussi
|
|
<function>pg_convert</function>.
|
|
</para>
|
|
</refsect1>
|
|
</refentry>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|