douyong1885 2018-12-05 16:32
浏览 33
已采纳

在cakephp中使用PHP Gender扩展

I've got the Gender guessing extension of php working on my localhost. http://php.net/manual/en/gender.example.admin.php

Following the instructions in a non-cakephp project all I have to do is:

namespace Gender;
$gender = new Gender;
$name = "Milene";
$country = Gender::FRANCE;

$result = $gender->get($name, $country);
$data = $gender->country($country);

And that produces the correct results. However if I put the above code in a function in cakephp I get an error:

syntax error, unexpected 'Gender' (T_STRING), expecting \\ (T_NS_SEPARATOR)

I think it's something to do with using namespaces but I'm not really sure how that all works (Have been and will continue to google). Can anyone shed any light on how I can use this Gender extension in cakephp?

EDIT Here is the error logs:

Stack Trace:
#0 [internal function]: OwnerAccountsController->dashboard()
#1 /var/www/html/rrv3/lib/Cake/Controller/Controller.php(491): ReflectionMethod->invokeArgs(Object(OwnerAccountsController), Array)
#2 /var/www/html/rrv3/lib/Cake/Routing/Dispatcher.php(193): Controller->invokeAction(Object(CakeRequest))
#3 /var/www/html/rrv3/lib/Cake/Routing/Dispatcher.php(167): Dispatcher->_invoke(Object(OwnerAccountsController), Object(CakeRequest))
#4 /var/www/html/rrv3/app/webroot/index.php(110): Dispatcher->dispatch(Object(CakeRequest), Object(CakeResponse))
#5 {main}

And this is the exact code I'm using in my dashboard function:

$gender = new \Gender\Gender();
$name = "Milene";
$country = \Gender\Gender::FRANCE;
$result = $gender->get($name, $country);
$data = $gender->country($country);

switch($result) {
    case Gender::IS_FEMALE:
        printf("The name %s is female in %s
", $name, $data['country']);
    break;
    case Gender::IS_MOSTLY_FEMALE:
        printf("The name %s is mostly female in %s
", $name, $data['country']);
    break;
    case Gender::IS_MALE:
        printf("The name %s is male in %s
", $name, $data['country']);
    break;
    case Gender::IS_MOSTLY_MALE:
        printf("The name %s is mostly male in %s
", $name, $data['country']);
    break;
    case Gender::IS_UNISEX_NAME:
        printf("The name %s is unisex in %s
", $name, $data['country']);
    break;
    case Gender::IS_A_COUPLE:
        printf("The name %s is both male and female in %s
", $name, $data['country']);
    break;
    case Gender::NAME_NOT_FOUND:
        printf("The name %s was not found for %s
", $name, $data['country']);
    break;
    case Gender::ERROR_IN_NAME:
        echo "There is an error in the given name!
";
    break;
    default:
        echo "An error occurred!
";
    break;
}
  • 写回答

1条回答 默认 最新

  • dqdl6469 2018-12-05 16:46
    关注

    Without your CakePHP code I can only guess but yes, most likely the namespace creates the problem. CakePHP code has its own namespace and you cannot nest namespaces. Try this code instead:

    $gender = new \Gender\Gender();
    $name = "Milene";
    $country = \Gender\Gender::FRANCE;
    
    $result = $gender->get($name, $country);
    $data = $gender->country($country);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 netty整合springboot之后自动重连失效
  • ¥15 悬赏!微信开发者工具报错,求帮改
  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效