嗨,当我在运行 php 5.2 的网络服务器上运行以下代码时,我在最后一行不断收到 Unexpected T_function 错误,这在运行 php 5.3.6 的本地机器上运行良好
// ***** Declare function that buids the post type
function add_post_type($name, $args = array() ) {
add_action('init',function() use($name, $args) {
有人可以帮我找出问题所在吗?