mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Added \n to the example output.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@309468 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3707997cd6
commit
0533cee159
1 changed files with 2 additions and 2 deletions
|
@ -116,7 +116,7 @@ sqlite_query($db, 'CREATE TABLE foo (bar varchar(10), arf text)');
|
|||
$cols = sqlite_fetch_column_types('foo', $db, SQLITE_ASSOC);
|
||||
|
||||
foreach ($cols as $column => $type) {
|
||||
echo "Column: $column Type: $type";
|
||||
echo "Column: $column Type: $type\n";
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
|
@ -134,7 +134,7 @@ $db->query('CREATE TABLE foo (bar varchar(10), arf text)');
|
|||
$cols = $db->fetchColumnTypes('foo', SQLITE_ASSOC);
|
||||
|
||||
foreach ($cols as $column => $type) {
|
||||
echo "Column: $column Type: $type";
|
||||
echo "Column: $column Type: $type\n";
|
||||
}
|
||||
?>
|
||||
]]>
|
||||
|
|
Loading…
Reference in a new issue