php学习小技巧

1、print_r可打印数组


<?php
    echo '<p class="ajax">This paragraph was loaded with AJAX.</p>',
    '<pre>GET variables: ', print_r($_GET, TRUE), '</pre>',
    '<pre>POST variables: ', print_r($_POST, TRUE), '</pre>';

原文地址:https://www.cnblogs.com/luhouxiang/p/5540661.html