summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl')
-rwxr-xr-xext/spl/README4
-rwxr-xr-xext/spl/examples/dba_array.php2
-rwxr-xr-xext/spl/examples/dba_dump.php2
-rwxr-xr-xext/spl/examples/findregex.php4
-rwxr-xr-xext/spl/examples/ini_groups.php2
-rwxr-xr-xext/spl/examples/phar_from_dir.php2
6 files changed, 8 insertions, 8 deletions
diff --git a/ext/spl/README b/ext/spl/README
index 28373a3eda..0f0e1e31b0 100755
--- a/ext/spl/README
+++ b/ext/spl/README
@@ -1,7 +1,7 @@
-This is an extension that aims to implement some efficient data access
+This is an extension that aims to implement some efficient data access
interfaces and classes. You'll find the classes documented using php
code in the file spl.php or in the corresponding .inc file in the examples
-subdirectory. Based on the internal implementations or the files in the
+subdirectory. Based on the internal implementations or the files in the
examples subdirectory there are also some .php files to experiment with.
For more information look at: http://php.net/manual/en/book.spl.php
diff --git a/ext/spl/examples/dba_array.php b/ext/spl/examples/dba_array.php
index 346ac1f2f7..f217c34546 100755
--- a/ext/spl/examples/dba_array.php
+++ b/ext/spl/examples/dba_array.php
@@ -11,7 +11,7 @@
* If \<value\> is specified then \<key\> is set to \<value\> in \<file\>.
* Else the value of \<key\> is printed only.
*
- * Note: configure with --enable-dba
+ * Note: configure with --enable-dba
*/
if ($argc < 4) {
diff --git a/ext/spl/examples/dba_dump.php b/ext/spl/examples/dba_dump.php
index 2c698d427a..7ea8e76255 100755
--- a/ext/spl/examples/dba_dump.php
+++ b/ext/spl/examples/dba_dump.php
@@ -11,7 +11,7 @@
* Show all groups in the ini file specified by \<file\>.
* The regular expression \<regex\> is used to filter the by setting name.
*
- * Note: configure with --enable-dba
+ * Note: configure with --enable-dba
*/
if ($argc < 3) {
diff --git a/ext/spl/examples/findregex.php b/ext/spl/examples/findregex.php
index b43ee0cbbc..288c0924b1 100755
--- a/ext/spl/examples/findregex.php
+++ b/ext/spl/examples/findregex.php
@@ -1,5 +1,5 @@
<?php
-
+
/** @file findregex.php
* @brief Program Find a specific file by name.
* @ingroup Examples
@@ -33,4 +33,4 @@ foreach(new RegexFindFile($argv[1], $argv[2]) as $file)
echo $file->getPathname()."\n";
}
-?> \ No newline at end of file
+?> \ No newline at end of file
diff --git a/ext/spl/examples/ini_groups.php b/ext/spl/examples/ini_groups.php
index 5136911096..4c6c89bd70 100755
--- a/ext/spl/examples/ini_groups.php
+++ b/ext/spl/examples/ini_groups.php
@@ -11,7 +11,7 @@
* Show all groups in the ini file specified by \<file\>.
* The regular expression \<regex\> is used to filter the result.
*
- * Note: configure with --enable-dba
+ * Note: configure with --enable-dba
*/
if ($argc < 2) {
diff --git a/ext/spl/examples/phar_from_dir.php b/ext/spl/examples/phar_from_dir.php
index 2ee15ca1e6..d75788e840 100755
--- a/ext/spl/examples/phar_from_dir.php
+++ b/ext/spl/examples/phar_from_dir.php
@@ -9,7 +9,7 @@
*
* Usage: php phar_create_from_dir.php \<archive\> \<directory\> [\<regex\>]
*
- * Create phar archive \<archive\> using entries from \<directory\> that
+ * Create phar archive \<archive\> using entries from \<directory\> that
* optionally match \<regex\>.
*/