[Gnucash-changes] r14006 - htdocs/trunk - Get info.

Joshua Sled jsled at cvs.gnucash.org
Wed May 10 21:31:50 EDT 2006


Author: jsled
Date: 2006-05-10 21:31:49 -0400 (Wed, 10 May 2006)
New Revision: 14006
Trac: http://svn.gnucash.org/trac/changeset/14006

Added:
   htdocs/trunk/info.php
Log:
Get info.

Added: htdocs/trunk/info.php
===================================================================
--- htdocs/trunk/info.php	2006-05-11 01:25:13 UTC (rev 14005)
+++ htdocs/trunk/info.php	2006-05-11 01:31:49 UTC (rev 14006)
@@ -0,0 +1,23 @@
+<html>
+<body>
+<h1> info... </h1>
+<?php
+
+
+function list_system_locales(){
+   ob_start();
+   system('locale -a');
+   $str = ob_get_contents();
+   ob_end_clean();
+   return split("\\n", trim($str));
+}
+
+echo list_system_locales();
+
+?>
+<hr />
+<?
+phpinfo();
+?>
+</body>
+</html>



More information about the gnucash-changes mailing list