php函数在localhost上工作但不在服务器上工作

时间:2015-12-16 17:59:14

标签: php

php函数在localhost上工作但不在服务器上工作, 功能:

  function camelCase($str, array $noStrip = []){
    // non-alpha and non-numeric characters become spaces
    $str = preg_replace('/[^a-z0-9' . implode("", $noStrip) . ']+/i', ' ', $str);
    $str = trim($str);
    // uppercase the first character of each word
    $str = ucwords($str);
    $str = str_replace(" ", "", $str);
    $str = lcfirst($str);

    return $str;
}

我收到了错误

enter image description here

请帮助

1 个答案:

答案 0 :(得分:0)

您是否尝试过访问服务器上的文档,例如一个简单的HTML文档? 如果这样可以在服务器和localhost上检查您的php版本<?php phpinfo(); ?>。您使用PHP 5.5的表示法确保它在服务器上运行!