Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
据说它可以在 xampp 的 mac 版本上运行,但没有流行,我拥有一台 windows PC
代码: http: //pastebin.com/zQ6JxHZe
这部分似乎是问题所在:
function print_r_html( $arr ) { ?><pre><? print_r( $arr ); ?></pre><? }
您没有正确打开 PHP 标记。试试这个:
function print_r_html( $arr ) { echo '<pre>'; print_r( $arr ); echo '<pre>'; }