View Zend Framework 2 - PHPLoc
====ZF2.3.3 PHPLoc==== | |
\htdocs\vendor\zendframework>php phploc.phar --log-csv log.csv --progress . | |
phploc 2.0.6 by Sebastian Bergmann. | |
Directories 417 | |
Files 2389 | |
Size | |
Lines of Code (LOC) 304378 | |
Comment Lines of Code (CLOC) 111994 (36.79%) |
View Zend Framework 1.7 - PHPLoc-
Directories 352 | |
Files 1712 | |
Size | |
Lines of Code (LOC) 337972 | |
Comment Lines of Code (CLOC) 152185 (45.03%) | |
Non-Comment Lines of Code (NCLOC) 185787 (54.97%) | |
Logical Lines of Code (LLOC) 61708 (18.26%) | |
Classes 59208 (95.95%) |
View Symfony 2.5 - PHPLoc- vendor\symfony\symfony\src\Symfony\Component
\vendor\symfony\symfony\src\Symfony\Component>php phploc.phar --log-csv log.csv --progress . | |
phploc 2.0.6 by Sebastian Bergmann. | |
Directories 449 | |
Files 2417 | |
Size | |
Lines of Code (LOC) 283341 | |
Comment Lines of Code (CLOC) 66130 (23.34%) | |
Non-Comment Lines of Code (NCLOC) 217211 (76.66%) |
View Symfony 2.5 - PHPLoc- vendor\symfony\symfony\src\Symfony\Component
\vendor\symfony\symfony\src\Symfony\Component>php phploc.phar --log-csv log.csv --progress . | |
phploc 2.0.6 by Sebastian Bergmann. | |
Directories 449 | |
Files 2417 | |
Size | |
Lines of Code (LOC) 283341 | |
Comment Lines of Code (CLOC) 66130 (23.34%) | |
Non-Comment Lines of Code (NCLOC) 217211 (76.66%) |
View Zend Framework 1.7 - PHPLoc-
Directories 352 | |
Files 1712 | |
Size | |
Lines of Code (LOC) 337972 | |
Comment Lines of Code (CLOC) 152185 (45.03%) | |
Non-Comment Lines of Code (NCLOC) 185787 (54.97%) | |
Logical Lines of Code (LLOC) 61708 (18.26%) | |
Classes 59208 (95.95%) | |
Average Class Length 36 |
View Zend Framework 2 - PHPLoc
====ZF2.3.3 PHPLoc==== | |
\htdocs\vendor\zendframework>php phploc.phar --log-csv log.csv --progress . | |
phploc 2.0.6 by Sebastian Bergmann. | |
Directories 417 | |
Files 2389 | |
Size | |
Lines of Code (LOC) 304378 | |
Comment Lines of Code (CLOC) 111994 (36.79%) |
View test.php
<?php | |
// Call this script in pase using: | |
// Call QP2TERM | |
// /usr/local/zendsvr/bin/php-cli /www/zendsvr/htdocs/test.php | |
// This script will use the current user thats logged in and the default database. | |
// Note: We can't use $_SERVER['APP_ENV'] because PHP-CLI doesn't get that value. | |
// That value is set by Apache on web requests | |
$db2Connection = db2_connect( '', '' , '',array()); |
View model.php
<?php | |
class Model | |
{ | |
protected $_dbh = null; | |
protected $_table = 'MYTABLE'; | |
public function __construct() | |
{ |
View SQLCodeCompletionIdeas.sql
s SELECT * FROM ${Table} | |
u UPDATE ${Table} SET ${columnValue} WHERE ${WhereClause} | |
d DELETE FROM ${Table} WHERE ${WhereClause} | |
i INSERT INTO ${Table} ${columns} VALUES (${values}); | |
g GRANT ${Permissions} ON ${DbObject} ${ObjectName} TO ${User} |
View PHPCLICL
*************** Beginning of data ******************************************** | |
PGM PARM(&FILENAME) | |
/* VARS */ | |
DCL VAR(&FILENAME) TYPE(*CHAR) LEN(80) | |
DCL VAR(&PHPCLIPATH) TYPE(*CHAR) LEN(128) | |
/* VARS FOR TRIM */ | |
DCL VAR(&LEN) TYPE(*DEC) LEN(2 0) | |
DCL VAR(&NULL) TYPE(*CHAR) LEN(128) VALUE(X'00') /*TERMINATE VAR WITH NULL */ | |
DCL VAR(&NULL1) TYPE(*CHAR) LEN(1) VALUE(X'00') | |
DCL VAR(&CHR15) TYPE(*CHAR) LEN(15) |
OlderNewer