Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/236.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/laravel/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php WooCommerce订阅-获取要在表中显示的活动订阅服务器信息_Php_Sql_Wordpress_Woocommerce_Woocommerce Subscriptions - Fatal编程技术网

Php WooCommerce订阅-获取要在表中显示的活动订阅服务器信息

Php WooCommerce订阅-获取要在表中显示的活动订阅服务器信息,php,sql,wordpress,woocommerce,woocommerce-subscriptions,Php,Sql,Wordpress,Woocommerce,Woocommerce Subscriptions,我正在使用Woocommerce订阅,我想生成一个表,显示所有活动订阅服务器及其相关用户信息。下面的代码正在调出所有用户。。。关于如何正确地做到这一点,有什么想法吗?谢谢!:) 姓氏 名字 公司 电话 电子邮件 您可以通过以下方式使用自定义SQL查询(已更新): 太棒了!非常感谢。我做了一些更改,因为姓氏出现在“名字”列中,我需要按姓氏的字母顺序组织表格。我将在下面发布更新的代码。抱歉@LoicTheAztec我是新的,我不确定正确的协议!谢谢你的回答! <table style="bo

我正在使用Woocommerce订阅,我想生成一个表,显示所有活动订阅服务器及其相关用户信息。下面的代码正在调出所有用户。。。关于如何正确地做到这一点,有什么想法吗?谢谢!:)


姓氏
名字
公司
电话
电子邮件

您可以通过以下方式使用自定义SQL查询(已更新):


太棒了!非常感谢。我做了一些更改,因为姓氏出现在“名字”列中,我需要按姓氏的字母顺序组织表格。我将在下面发布更新的代码。抱歉@LoicTheAztec我是新的,我不确定正确的协议!谢谢你的回答!
<table style="border-collapse: collapse;" border="0" width="450" cellspacing="0" cellpadding="0"><colgroup> <col span="5" width="75" /> </colgroup>
<tbody>     
<tr>
<td width="75"><strong>Last Name</strong></td>
<td width="75" height="13"><strong>First Name</strong></td>
<td width="75"><strong>Company</strong></td>
<td width="95"><strong>Phone</strong></td>
<td width="75"><strong>Email</strong></td>
</tr>

<?php
$args = array(
    'post_type'   => 'shop_subscription', // Subscription post type
    'post_status' => 'wc-active', // Active subscription
    'order' => 'ASC',
    'meta_key'  => 'last_name',
    'orderby' => 'meta_value', 
    'numberposts' => -1,

);

// The Query

$user_query = new WP_User_Query( $args );


// User Loop
if ( ! empty( $user_query->results ) ) {
    foreach ( $user_query->results as $user ) {

        echo '
<tr>

<td height="13">' . $user->last_name . '</td> <td>' . $user->first_name . '</td> <td>' . $user->billing_company . '</td><td>' . $user->billing_phone  . '</td> <td>' . $user->user_email  . '</td></tr>' ;
    }
} else {
    echo 'No users found.';
}
?> 


</tbody>
</table>
<?php
    global $wpdb;
    $results = $wpdb->get_results( "
        SELECT DISTINCT postmeta.meta_value as user_id, postmeta2.meta_value as first_name, postmeta3.meta_value as last_name,
        postmeta4.meta_value as company, postmeta5.meta_value as phone, postmeta6.meta_value as email
        FROM {$wpdb->prefix}postmeta as postmeta
        INNER JOIN {$wpdb->prefix}posts as posts ON postmeta.post_id = posts.ID
        INNER JOIN {$wpdb->prefix}postmeta as postmeta2 ON postmeta2.post_id = posts.ID
        INNER JOIN {$wpdb->prefix}postmeta as postmeta3 ON postmeta3.post_id = posts.ID
        INNER JOIN {$wpdb->prefix}postmeta as postmeta4 ON postmeta4.post_id = posts.ID
        INNER JOIN {$wpdb->prefix}postmeta as postmeta5 ON postmeta5.post_id = posts.ID
        INNER JOIN {$wpdb->prefix}postmeta as postmeta6 ON postmeta6.post_id = posts.ID
        WHERE posts.post_type LIKE 'shop_subscription'
        AND posts.post_status LIKE 'wc-active'
        AND postmeta.meta_key = '_customer_user'
        AND postmeta2.meta_key = '_billing_first_name'
        AND postmeta3.meta_key = '_billing_last_name'
        AND postmeta4.meta_key = '_billing_company'
        AND postmeta5.meta_key = '_billing_phone'
        AND postmeta6.meta_key = '_billing_email'
        ORDER BY postmeta2.meta_key ASC
    " );
?>
<table style="border-collapse: collapse;" border="0" width="450" cellspacing="0" cellpadding="0">
    <tbody>
        <tr>
            <th height="13"><strong>ID</strong></th>
            <th><strong>Last Name</strong></th>
            <th><strong>First Name</strong></th>
            <th><strong>Company</strong></th>
            <th><strong>Phone</strong></th>
            <th><strong>Email</strong></th>
        </tr>
<?php
foreach ( $results as $result ):
?>
        <tr>
            <td height="13"><?php echo $result->user_id; ?></td>
            <td><?php echo $result->last_name; ?></td>
            <td><?php echo $result->first_name; ?></td>
            <td><?php echo $result->company; ?></td>
            <td><?php echo $result->phone; ?></td>
            <td><?php echo $result->email; ?></td>
        </tr>
<?php
endforeach;
?>
    </tbody>
</table>