Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <pre>
- $settings => array(
- <?php
- $json = file_get_contents("http://txdv.github.io/cstrike-cvarlist/site.min.json");
- $json = json_decode($json, true);
- foreach($json as $var) {
- $output .= " array('".$var["cvar"]."' => '".str_replace("'", "\'", $var["description"])."'),\n";
- }
- $output = substr($output, 0, strlen($output)-2);
- echo $output."\n";
- ?>
- );
- </pre>
Advertisement
Add Comment
Please, Sign In to add comment