-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpparms1.php
More file actions
167 lines (137 loc) · 4.65 KB
/
phpparms1.php
File metadata and controls
167 lines (137 loc) · 4.65 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<?php
//-------------------------------------------------------------
// Script name: phpparms1.php
// Desc: Parse command line parameters.
// The command line below runs the script in debug mode and displays any errors.
// Ex: php -d error_log= phpparms1.php --name="value1" --name2="value2"
//-------------------------------------------------------------
//---------------------------------------------------
// Function: parseNamedParameters
// Desc: Parse named parameters
//---------------------------------------------------
function parseNamedParameters($argv) {
$params = [];
foreach ($argv as $arg) {
if (strpos($arg, '--') === 0) {
$parts = explode('=', substr($arg, 2), 2);
$key = $parts[0];
$value = $parts[1] ?? true; // Default to true if no value is provided
$params[$key] = $value;
}
}
return $params;
}
//---------------------------------------------------
// Function: printline
// Desc: Print string value with newline - \n
//---------------------------------------------------
function printline($val) {
print("{$val}\n");
}
//---------------------------------------------------
// Function: FormatNow
// Desc: Format now date/time stamp into readable txt
// Ex Unix Date Format: /Date(1719792000000+0000)/
//---------------------------------------------------
function FormatNow($fmtstr='Y-m-d-His') {
try {
// Format current time
$dt = date($fmtstr,time());
return $dt;
} catch ( Throwable $e){
// Uncomment for message to console
//print("Error: FormatNow throwable error:$e\n");
return "";
} catch (Exception $e) {
// Uncomment for message to console
//print("Error: FormatNow exception error:$e\n");
return "";
}
}
//---------------------------------------------------
// Function: FormatDate
// Desc: Format date/time stamp into readable txt
//
// Parms:
// $dateteime1= Datetime field
// $fmtstr=PHP data format string. Default: "M d, Y" Ex:Jun 04, 2024
// "M d, Y" - Ex: Jun 04, 2024
// "M j, Y - Ex: Jun 4, 2024
// Link:
// https://www.php.net/manual/en/datetime.formats.php
//---------------------------------------------------
function FormatDate($datetime1,$fmtstr='M j, Y') {
try {
//print("Datetime1:".$datetime1."\n");
// Convert date to string
$datestr1=strval($datetime1);
// Create new DateTime object from date/time string
$date1=new DateTime($datestr1);
// Format and return the date value as a string
$dt=$date1->format($fmtstr);
//print("dt:".$dt."\n");
return $dt;
} catch ( Throwable $e){
// Uncomment for message to console
print("Error: FormatDate throwable error:$e");
return "";
} catch (Exception $e) {
// Uncomment for message to console
print("Error: FormatDate exception error:$e");
return "";
}
}
//-------------------------------------------------------------
// Main script
//-------------------------------------------------------------
$scriptname=$argv[0];
$scriptdesc="Sample Parameter passing CLI app";
$exitcode=0;
$exitmessage="";
$exitexception="";
$dashes="-------------------------------------------------------------";
try {
// Get the named parameters
$params = parseNamedParameters($argv);
// Output script overview info to stdout
printline($dashes);
printline("{$scriptdesc} - {$scriptname}");
$now1=FormatNow();
printline("Processing Start - {$now1}");
printline("We are simply parsing parameters and determining if all there.");
// Check for --name parm
// If found just echo it
if (isset($params['name'])) {
printline("--name value: {$params['name']}");
} else {
throw new Exception('No --name parameter not provided');
}
// Check for --name2 parm
// If found just echo it
if (isset($params['name2'])) {
printline("--name2 value: {$params['name2']}");
} else {
throw new Exception('--name2 parameter not provided');
}
$now1=FormatNow();
printline("Processing End/Complete - {$now1}");
$exitcode=0;
$exitmessage="Processing completed successfully";
// Handle errors
} catch (Throwable $e){
$exitexception=$e;
$exitmessage="{$e->getMessage()}";
$exitcode=-2;
} catch (Exception $e) {
$exitexception=$e;
$exitmessage="{$e->getMessage()}";
$exitcode=-2;
// Final exit output return code and message
} finally {
// Output script completion info to stdout
printline("ExitCode:{$exitcode}");
printline("ExitMessage:{$exitmessage}");
printline("ExitException:{$exitexception}");
printline($dashes);
exit($exitcode);
}