[PHP] 从数组中返回若干单元,若数组不存在则返回false →→→→→进入此内容的聊天室

来自 , 2019-07-04, 写在 PHP, 查看 134 次.
URL http://www.code666.cn/view/62da8c91
  1.         /**
  2.          * Display the table
  3.          *
  4.          * @since 3.1.0
  5.          * @access public
  6.          */
  7.         function display() {
  8.                 extract( $this->_args );
  9.  
  10.                 $this->display_tablenav( 'top' );
  11.  
  12. ?>
  13. <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>" cellspacing="0">
  14.         <thead>
  15.         <tr>
  16.                 <?php $this->print_column_headers(); ?>
  17.         </tr>
  18.         </thead>
  19.  
  20.         <tfoot>
  21.         <tr>
  22.                 <?php $this->print_column_headers( false ); ?>
  23.         </tr>
  24.         </tfoot>
  25.  
  26.         <tbody id="the-list"<?php if ( $singular ) echo " data-wp-lists='list:$singular'"; ?>>
  27.                 <?php $this->display_rows_or_placeholder(); ?>
  28.         </tbody>
  29. </table>
  30. <?php
  31.                 $this->display_tablenav( 'bottom' );
  32.         }
  33.  

回复 "从数组中返回若干单元,若数组不存在则返回false"

这儿你可以回复上面这条便签

captcha