- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcodeExtractor.php
More file actions
Latest commit
27 lines (22 loc) · 472 Bytes
/
Copy pathcodeExtractor.php
File metadata and controls
27 lines (22 loc) · 472 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
aå<?php
/**
* @todo:
* @version
* 1.0
*/
require_once('common.php');
$my_report_id = -1;
require_once('incl-auth.php');
$arr = array(
'myCodeName' => "My Code 1",
'myCodeTimesUsedCount' => 0,
'myCodeValueAsMins' => 5,
'myCodeOwner' => "awh",
//'myCodeBody' => "echo ("LAL1");", //may need serialization
'myCodeBody' => "abcabc",
'myCodeLastEditDate' => "2014-06-16 17:00:59",
'isSnippet' => 0,
'isMyFavorite' => 0
);
echojson_encode($arr);
?>