aboutsummaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
Diffstat (limited to 'classes')
-rw-r--r--classes/CinIsis.php3
-rw-r--r--classes/PhpIsisDb.php25
2 files changed, 27 insertions, 1 deletions
diff --git a/classes/CinIsis.php b/classes/CinIsis.php
index 300bd61..77804c4 100644
--- a/classes/CinIsis.php
+++ b/classes/CinIsis.php
@@ -21,6 +21,9 @@ class CinIsis {
*
* @param $config
* Alternative config file (defaults to 'config/config.yaml').
+ *
+ * @todo
+ * Config check.
*/
function __construct($config = NULL) {
if ($config == NULL) {
diff --git a/classes/PhpIsisDb.php b/classes/PhpIsisDb.php
index 169f832..b8f6566 100644
--- a/classes/PhpIsisDb.php
+++ b/classes/PhpIsisDb.php
@@ -50,6 +50,10 @@ class PhpIsisDb implements IsisDb {
return FALSE;
}
+ // Charset conversion.
+ array_walk_recursive($data, array('PhpIsisDb', 'charset'));
+
+ // Return the result.
return $this->tag(isis_fetch_array($results));
}
@@ -90,6 +94,25 @@ class PhpIsisDb implements IsisDb {
$data[$name] = $value;
}
}
+
return $data;
- }
+ }
+
+ /**
+ * Charset conversion.
+ *
+ * Converts a string from the database charset to UTF-8.
+ *
+ * @param $data
+ * String to be converted.
+ *
+ * @param $count
+ * Data index. Currently unused.
+ *
+ * @return
+ * String converted to UTF-8.
+ */
+ function charset($data, $count) {
+ return iconv($data, $this->format['db']['charset'], 'UTF-8');
+ }
}