File tree Expand file tree Collapse file tree 3 files changed +12
-12
lines changed
RHEL/SqlServerColumnstoreSample
Ubuntu/SqlServerColumnstoreSample
Windows/SqlServerColumnstoreSample Expand file tree Collapse file tree 3 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
- $ time_start = microtime (true );
2
+ $ timeStart = microtime (true );
3
3
4
4
$ serverName = "localhost " ;
5
5
$ connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
34
34
}
35
35
}
36
36
37
- $ time_end = microtime (true );
38
- $ execution_time = round ((($ time_end - $ time_start ) * 1000 ), 2 );
39
- echo 'QueryTime: ' . $ execution_time . ' ms ' ;
37
+ $ timeEnd = microtime (true );
38
+ $ executionTime = round ((($ timeEnd - $ timeStart ) * 1000 ), 2 );
39
+ echo 'QueryTime: ' . $ executionTime . ' ms ' ;
Original file line number Diff line number Diff line change 1
1
<?php
2
- $ time_start = microtime (true );
2
+ $ timeStart = microtime (true );
3
3
4
4
$ serverName = "localhost " ;
5
5
$ connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
34
34
}
35
35
}
36
36
37
- $ time_end = microtime (true );
38
- $ execution_time = round ((($ time_end - $ time_start ) * 1000 ), 2 );
39
- echo 'QueryTime: ' . $ execution_time . ' ms ' ;
37
+ $ timeEnd = microtime (true );
38
+ $ executionTime = round ((($ timeEnd - $ timeStart ) * 1000 ), 2 );
39
+ echo 'QueryTime: ' . $ executionTime . ' ms ' ;
Original file line number Diff line number Diff line change 1
1
<?php
2
- $ time_start = microtime (true );
2
+ $ timeStart = microtime (true );
3
3
4
4
$ serverName = "localhost " ;
5
5
$ connectionOptions = [
@@ -34,6 +34,6 @@ function formatErrors($errors)
34
34
}
35
35
}
36
36
37
- $ time_end = microtime (true );
38
- $ execution_time = round ((($ time_end - $ time_start ) * 1000 ), 2 );
39
- echo 'QueryTime: ' . $ execution_time . ' ms ' ;
37
+ $ timeEnd = microtime (true );
38
+ $ executionTime = round ((($ timeEnd - $ timeStart ) * 1000 ), 2 );
39
+ echo 'QueryTime: ' . $ executionTime . ' ms ' ;
You can’t perform that action at this time.
0 commit comments