Fix all other class code for calling former Basic class methods. Also try to replace all remaining array() calls to [] type Some docblock updates when missing or wrong set
112 lines
2.7 KiB
PHP
Executable File
112 lines
2.7 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* @phan-file-suppress PhanTypeSuspiciousStringExpression
|
|
*/
|
|
|
|
namespace CoreLibs;
|
|
|
|
$DEBUG_ALL_OVERRIDE = 0; // set to 1 to debug on live/remote server locations
|
|
$DEBUG_ALL = 1;
|
|
$PRINT_ALL = 1;
|
|
$DB_DEBUG = 1;
|
|
|
|
// admin class tests
|
|
require 'config.php';
|
|
$SET_SESSION_NAME = EDIT_SESSION_NAME;
|
|
$base = new Basic();
|
|
|
|
print "THIS HOST: ".HOST_NAME.", with PROTOCOL: ".HOST_PROTOCOL." is running SSL: ".HOST_SSL."<br>";
|
|
print "DIR: ".DIR."<br>";
|
|
print "BASE: ".BASE."<br>";
|
|
print "ROOT: ".ROOT."<br>";
|
|
print "HOST: ".HOST_NAME." => DB HOST: ".DB_CONFIG_NAME." => ".print_r(DB_CONFIG, true)."<br>";
|
|
|
|
$text = 'I am some text
|
|
with some
|
|
line breaks
|
|
in there. Theis
|
|
is sucky';
|
|
|
|
print "LB remove: ".\CoreLibs\Convert\Html::removeLB($text)."<br>";
|
|
print "LB remove: ".\CoreLibs\Convert\Html::removeLB($text, '##BR##')."<br>";
|
|
|
|
// $test = array (
|
|
// 'A' => array (
|
|
// 'B' => array (),
|
|
// 'C' => array (
|
|
// 'D' => array (),
|
|
// 'E' => array (
|
|
// 'F' => array ()
|
|
// )
|
|
// )
|
|
// ),
|
|
// '1' => array (),
|
|
// '2' => array (),
|
|
// '3' => array (
|
|
// 'G' => array ()
|
|
// )
|
|
// );
|
|
|
|
// $base->log->debug('ARRAY', \CoreLibs\Debug\Support::printAr($test));
|
|
|
|
function rec($pre, $cur, $node = array ())
|
|
{
|
|
if (!is_array($node)) {
|
|
$node = array ();
|
|
}
|
|
print "<div style='color: green;'>#### PRE: ".$pre.", CUR: ".$cur.", N-c: ".count($node)." [".join('|', array_keys($node))."]</div>";
|
|
if (!$pre) {
|
|
print "** <span style='color: red;'>NEW</span><br>";
|
|
$node[$cur] = array ();
|
|
} else {
|
|
if (array_key_exists($pre, $node)) {
|
|
print "+ <span style='color: orange;'>KEY FOUND:</span> ".$pre.", add: ".$cur."<br>";
|
|
$node[$pre][$cur] = array ();
|
|
} else {
|
|
print "- NOT FOUND: loop<br>";
|
|
foreach ($node as $_pre => $_cur) {
|
|
print "> TRY: ".$_pre." => ".count($_cur)." [".join('|', array_keys($_cur))."]<br>";
|
|
if (count($_cur) > 0) {
|
|
$node[$_pre] = rec($pre, $cur, $_cur);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return $node;
|
|
}
|
|
|
|
function flattenArrayKey(array $array, array $return = array ())
|
|
{
|
|
foreach ($array as $key => $sub) {
|
|
$return[] = $key;
|
|
if (count($sub) > 0) {
|
|
$return = flattenArrayKey($sub, $return);
|
|
}
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
$test = array ();
|
|
// core
|
|
$test = rec('', 'A', $test);
|
|
$test = rec('', '1', $test);
|
|
$test = rec('', '2', $test);
|
|
$test = rec('', '3', $test);
|
|
$test = rec('3', 'G', $test);
|
|
$test = rec('A', 'B', $test);
|
|
$test = rec('A', 'C', $test);
|
|
$test = rec('C', 'D', $test);
|
|
$test = rec('C', 'E', $test);
|
|
$test = rec('E', 'F', $test);
|
|
// new
|
|
$test = rec('C', 'U', $test);
|
|
$test = rec('F', 'U', $test);
|
|
$test = rec('', 'Al', $test);
|
|
$test = rec('B', 'B1', $test);
|
|
$base->log->debug('REC', \CoreLibs\Debug\Support::printAr($test));
|
|
print "FLATTEN: ".\CoreLibs\Debug\Support::printAr(flattenArrayKey($test))."<br>";
|
|
|
|
print $base->log->printErrorMsg();
|
|
|
|
// __END__
|