Add domframework tools (for cli use)

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@2650 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2016-03-05 16:26:50 +00:00
parent 089707e88f
commit 83c3b46e87
2 changed files with 16 additions and 0 deletions

1
tools/.htaccess Normal file
View File

@@ -0,0 +1 @@
deny from all

15
tools/dbjsonDecode.php Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/php5
<?php
if (! isset ($argv[1]))
die ("No file to decode provided\n");
$file = $argv[1];
if (! file_exists ($file))
die ("File $file not found\n");
if (! is_readable ($file))
die ("File $file not readable\n");
if (! is_writeable ($file))
die ("File $file not writeable\n");
print_r (json_decode (file_get_contents ($file)));