1
0
This repository has been archived on 2023-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
dtux__nextcloudconnector4do.../findindb.php

28 lines
600 B
PHP
Raw Normal View History

2019-09-01 20:42:03 +02:00
#!/usr/bin/php
<?php
require("db.class.php");
$database = $argv[1];
2019-09-01 22:13:00 +02:00
$string = (isset($argv[2]))?$argv[2]:"";
2019-09-01 20:42:03 +02:00
2019-09-01 20:59:27 +02:00
$db1 = new db ("nextcloud");
$db2 = new db ("nextcloud");
$db1->query("SHOW tables FROM $database;");
2019-09-01 21:23:22 +02:00
//print_r($db1->result);
2019-09-01 20:59:27 +02:00
while( $table = $db1->result->fetch_assoc())
{
2019-09-01 21:23:22 +02:00
echo "======================>" . $table['Tables_in_nextcloud'];
2019-09-01 21:14:21 +02:00
$db2->query("SHOW columns FROM " . $table['Tables_in_nextcloud']);
2019-09-01 21:26:10 +02:00
$columns = $db2->result->fetch_all();
2019-09-01 22:19:10 +02:00
foreach($columns AS $key=>$s)
2019-09-01 22:13:00 +02:00
{
if (array_search($string, $columns) !== false)
{
echo "column " . $s . " => " . "$key";
}
}
2019-09-01 21:00:27 +02:00
}
2019-09-01 20:42:03 +02:00
?>