Server IP : 127.0.0.2 / Your IP : 18.216.239.73 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/phpmyadmin/templates/table/structure/ |
Upload File : |
<?php $odd_row = false; ?> <table id="tablerowstats" class="data"> <caption class="tblHeaders"><?php echo __('Row statistics'); ?></caption> <tbody> <?php if (isset($showtable['Row_format'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Format'); ?></th> <?php if ($showtable['Row_format'] == 'Fixed'): ?> <td class="value"><?php echo __('static'); ?></td> <?php elseif ($showtable['Row_format'] == 'Dynamic'): ?> <td class="value"><?php echo __('dynamic'); ?></td> <?php else: ?> <td class="value"><?php echo $showtable['Row_format']; ?></td> <?php endif; ?> </tr> <?php endif; ?> <?php if (! empty($showtable['Create_options'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Options'); ?></th> <?php if ($showtable['Create_options'] == 'partitioned'): ?> <td class="value"><?php echo __('partitioned'); ?></td> <?php else: ?> <td class="value"><?php echo $showtable['Create_options']; ?></td> <?php endif; ?> </tr> <?php endif; ?> <?php if (!empty($tbl_collation)): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Collation'); ?></th> <td class="value"> <dfn title="<?php echo PMA_getCollationDescr($tbl_collation); ?>"> <?php echo $tbl_collation; ?> </dfn> </td> </tr> <?php endif; ?> <?php if (!$is_innodb && isset($showtable['Rows'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Rows'); ?></th> <td class="value"><?php echo PMA_Util::formatNumber($showtable['Rows'], 0); ?></td> </tr> <?php endif; ?> <?php if (!$is_innodb && isset($showtable['Avg_row_length']) && $showtable['Avg_row_length'] > 0 ): ?> <?php list($avg_row_length_value, $avg_row_length_unit) = PMA_Util::formatByteDown($showtable['Avg_row_length'], 6, 1); ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Row length'); ?></th> <td class="value"><?php echo ($avg_row_length_value . ' ' . $avg_row_length_unit); ?></td> </tr> <?php unset($avg_row_length_value, $avg_row_length_unit); ?> <?php endif; ?> <?php if (!$is_innodb && isset($showtable['Data_length']) && isset($showtable['Rows']) && $showtable['Rows'] > 0 && $mergetable == false): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Row size'); ?></th> <td class="value"><?php echo ($avg_size . ' ' . $avg_unit); ?></td> </tr> <?php endif; ?> <?php if (isset($showtable['Auto_increment'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Next autoindex'); ?></th> <td class="value"><?php echo PMA_Util::formatNumber($showtable['Auto_increment'], 0); ?></td> </tr> <?php endif; ?> <?php if (isset($showtable['Create_time'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Creation'); ?></th> <td class="value"><?php echo PMA_Util::localisedDate(strtotime($showtable['Create_time'])); ?></td> </tr> <?php endif; ?> <?php if (isset($showtable['Update_time'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Last update'); ?></th> <td class="value"><?php echo PMA_Util::localisedDate(strtotime($showtable['Update_time'])); ?></td> </tr> <?php endif; ?> <?php if (isset($showtable['Check_time'])): ?> <tr class="<?php echo (($odd_row = !$odd_row) ? 'odd' : 'even'); ?>"> <th class="name"><?php echo __('Last check'); ?></th> <td class="value"><?php echo PMA_Util::localisedDate(strtotime($showtable['Check_time'])); ?></td> </tr> <?php endif; ?> </tbody> </table>