A fun gender judgment extension in PHP
A fun gender judgment extension in PHP
The extension we are going to learn today is also a very niche extension. In fact, to put it bluntly, maybe no one uses it at all. Expand. Of course, we are just for learning purposes to see what this extension is and what is interesting about it.
Extension description
The Gender extension can be seen from the name. It is a gender extension. This extension can be based on the user name passed to it and the user's location. Isn’t it very interesting to return gender status in regional countries? This extension can be downloaded and installed directly from the PECL website, and there are no other special requirements.
The Gender extension is used based on the gender.c function library written by the great master Joerg Michael. It is said to contain more than 40,000 names in 54 countries and regions. For specific situations, let's take a closer look at its effect in the test code below.
Latest class opening information: The 16th period of PHP full stack is online, and classes will start at 20:00 (6.28) tonight! For details, see: https://www.php.cn/k.html
Judge gender based on name
Using this When expanding, we need to prepare a function first, which is actually to facilitate our subsequent testing operations.
$gender = new Gender\Gender; function showGender($name, $country) { global $gender; $result = $gender->get($name, $country); var_dump($result); $data = $gender->country($country); var_dump($data); switch ($result) { case Gender\Gender::IS_FEMALE: printf("%s:女性 - %s\n", $name, $data['country']); break; case Gender\Gender::IS_MOSTLY_FEMALE: printf("%s:大部分情况下是女性 - %s\n", $name, $data['country']); break; case Gender\Gender::IS_MALE: printf("%s:男性 - %s\n", $name, $data['country']); break; case Gender\Gender::IS_MOSTLY_MALE: printf("%s:大部分情况下是男性 - %s\n", $name, $data['country']); break; case Gender\Gender::IS_UNISEX_NAME: printf("%s:中性名称(不好确认性别) - \n", $name, $data['country']); break; case Gender\Gender::IS_A_COUPLE: printf("%s:男女都适用 - %s\n", $name, $data['country']); break; case Gender\Gender::NAME_NOT_FOUND: printf("%s:对应的国家字典中没有找到相关信息 - %s\n", $name, $data['country']); break; case Gender\Gender::ERROR_IN_NAME: echo "给定的姓名信息错误\n"; break; default: echo "错误!\n"; break; } }
First, instantiate a Gender object, and then define a function. In this function, we print the information returned by the get() method in the Gender class. The information it returns is the gender determination value returned by the $gender object based on the specified parameters. Then we use the following switch to determine whether the returned value corresponds to the constant in the class, so that we know what the returned result is. The country() method obtains the detailed information of the specified country and region, and we can see their output in the following test code.
showGender("William", Gender\Gender::USA); // int(77) // array(2) { // ["country_short"]=> // string(3) "USA" // ["country"]=> // string(6) "U.S.A." // } // William:男性 - U.S.A. showGender("Ayumi Hamasaki", Gender\Gender::JAPAN); // int(70) // array(2) { // ["country_short"]=> // string(3) "JAP" // ["country"]=> // string(5) "Japan" // } // Ayumi Hamasaki:女性 - Japan
The next step is to simply test. First, test an English name and specify the country and region as USA, which is the United States. You can see that the value returned by get() is 77, which corresponds to the constant value of IS_MALE, which means that this is a male name. The content returned by the country() function is the full name and abbreviation information of the country. In the second test, we were given the name of a Japanese woman (Ayumi Hamasaki’s English name), and you can see that the information about the woman and country was returned normally. So, does this extension support Chinese?
Sorry, it does not support Chinese, so we need to use Chinese pinyin names, and if the specified country and region is CHINA, the pinyin names returned are neutral names (regardless of gender) name used).
howGender("Gang Qiang", Gender\Gender::CHINA); // int(63) // array(2) { // ["country_short"]=> // string(3) "CHN" // ["country"]=> // string(5) "China" // } // Gang Qiang:中性名称(不好确认性别) showGender("Anna Li", Gender\Gender::CHINA); // int(70) // array(2) { // ["country_short"]=> // string(3) "CHN" // ["country"]=> // string(5) "China" // } // Anna Li:女性 - China
Well, it seems to be a trap. This thing has no practical use for us. Since there is very little information on this extension, and the Chinese-oriented information is completely unavailable, I don’t know whether it determines the Chinese name based on pinyin. Complete Chinese will directly return NAME_NOT_FOUND information. So, just have fun everyone!
Summary
I have to say that if I hadn’t refreshed the documentation, I wouldn’t have known that PHP even provided such an extension library. In fact, interested students can try to write a similar extension library that can determine Chinese names. Although it may not be commonly used in actual business development, it can be used as an open source practice to improve one's C language. technology.
测试代码: https://github.com/zhangyue0503/dev-blog/blob/master/php/202011/source/1.PHP中一个好玩的性别判断扩展.php 参考文档: https://www.php.net/manual/zh/book.gender.php
The above is the detailed content of A fun gender judgment extension in PHP. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

PHP and Python each have their own advantages, and choose according to project requirements. 1.PHP is suitable for web development, especially for rapid development and maintenance of websites. 2. Python is suitable for data science, machine learning and artificial intelligence, with concise syntax and suitable for beginners.

PHP is a scripting language widely used on the server side, especially suitable for web development. 1.PHP can embed HTML, process HTTP requests and responses, and supports a variety of databases. 2.PHP is used to generate dynamic web content, process form data, access databases, etc., with strong community support and open source resources. 3. PHP is an interpreted language, and the execution process includes lexical analysis, grammatical analysis, compilation and execution. 4.PHP can be combined with MySQL for advanced applications such as user registration systems. 5. When debugging PHP, you can use functions such as error_reporting() and var_dump(). 6. Optimize PHP code to use caching mechanisms, optimize database queries and use built-in functions. 7
