mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
typos. noticed in user note
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@167827 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
dcbef9a848
commit
3ff3381ba8
1 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<!-- splitted from ./en/functions/mysql.xml, last change in rev 1.17 -->
|
||||
<refentry id="function.mysql-field-len">
|
||||
<refnamediv>
|
||||
|
@ -21,7 +21,7 @@
|
|||
</para>
|
||||
<para>
|
||||
<example>
|
||||
<title>A <function>mysql_fetch_len</function> example</title>
|
||||
<title><function>mysql_field_len</function> example</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
@ -33,7 +33,7 @@ if (!$result) {
|
|||
|
||||
// Will get the length of the value in email so for example
|
||||
// user@example.com would give us a length of 16
|
||||
$length = mysql_fetch_len($result, 'email');
|
||||
$length = mysql_field_len($result, 'email');
|
||||
echo $length;
|
||||
?>
|
||||
]]>
|
||||
|
|
Loading…
Reference in a new issue