Table of Contents
教程:汉子转拼音代码分析" >教程:汉子转拼音代码分析
Home Backend Development PHP Tutorial PHP Chinese character to Pinyin code analysis

PHP Chinese character to Pinyin code analysis

Oct 21, 2016 am 10:03 AM
php

首先需要前台模版index.html

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>汉子转拼音带音标_PHP博客</title>
<meta name="keywords" content="php实例,PHP实例教程,php源码,PHP汉字转拼音" />
<meta name="description" content="下面我们讲解一下如何使用PHP来将汉字换转为拼音【带音标】" />
 
<link rel="stylesheet" type="text/css" href="/Themes/Admin/Public/css/common.css" />
<style>
.demo{width:520px; margin:40px auto 0 auto; min-height:250px;}
.input{padding:3px; line-height:22px; border:1px solid #ccc}
.btn{overflow: hidden;display:inline-block;*display:inline;padding:4px 20px 4px;font-size:14px;line-height:18px;*line-height:20px;color:#fff;text-align:center;vertical-align:middle;cursor:pointer;background-color:#5bb75b;border:1px solid #cccccc;border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px; margin-left:2px}
#result{margin-top:20px; line-height:26px; word-break:break-all}
.blue{ color: #blue;}
.red{ color: #red;}
</style>
</head>
    <body>
        <div class="head">
            <div class="head_inner clearfix">
                <ul id="nav">
                    <li><a href="http://liqingbo.cn/">首 页</a></li>
                    <li><a href="http://liqingbo.cn/category/">文章列表</a></li>
                </ul>
                <a class="logo" href="http://liqingbo.cn/" title="PHP Chinese character to Pinyin code analysis"><img src="/static/imghw/default1.png"  data-src="/Public/images/logo.png"  class="lazy"   alt="PHP Chinese character to Pinyin code analysis"    style="max-width:90%" /></a>
            </div>
        </div>
        <div class="container">
            <div class="demo">
                <h2 id="a-nbsp-href-教程-汉子转拼音代码分析-a"><a href="">教程:汉子转拼音代码分析</a></h2>
                <div>内容:<textarea id="str" class="input" style="width:100%; height:80px"></textarea></div>
                <div class="input-text">
                    <input type="button" value="汉->拼" class="btn" id="pinyin"/>
                </div>
                <div id="result" class="result"></div>
 
            </div>
        </div>
        <div class="foot">
            Powered by sucaihuo.com  本站皆为作者原创,转载请注明原文链接:<a href="http://liqingbo.cn/" target="_blank">liqingbo.cn</a>
        </div>
        <script type="text/javascript" src="/Themes/Admin/Public/js/jquery.js"></script>
        <script type="text/javascript">
            $(function() {
                $("#pinyin").click(function() {
                    post(&#39;pinyin&#39;);//加密
                });
                $("#hanzi").click(function() {
                    post(&#39;hanzi&#39;);//解密
                });
                $("#empty").click(function(){
                    $("#str").val(&#39;&#39;);
                    $("#key").val(&#39;&#39;);
                    $("#result").text(&#39;&#39;);
                })
            });
            function post(act) {
                var str = $("#str").val();
                $.post("/admin.php/article/pinyin/?act=" + act, {str: str}, function(data) {
                    $("#result").html(data);
                });
            }
        </script>
    </body>
</html>
Copy after login

当我们输入所要转换的汉字后,将数据提交到pinyin.php文件进行转换,在返回到index.html文件中

完整代码:

public function pinyin(){
        if(IS_POST){
            header("Content-Type:text/html;charset=utf-8");
            include(APPLICATION."Common/ChinesePinyin.class.php");
            $Pinyin = new ChinesePinyin();
 
            $str = $_POST[&#39;str&#39;];
 
            if(strlen($str)<=0){
                echo &#39;请输入要转换的内容&#39;;
                exit;
            }
            $pinyin1 = $Pinyin->TransformWithTone($str);
            $pinyin2 = $Pinyin->TransformWithoutTone($str);
            $pinyin3 = $Pinyin->TransformUcwordsOnlyChar($str);
            $pinyin4 = $Pinyin->TransformUcwords($str);
            echo &#39;带声调的汉语拼音: <span class="red">&#39;.$pinyin1.&#39;</span>&#39;;
            echo &#39;<br>&#39;;
            echo &#39;无声调的汉语拼音: <span class="red">&#39;.$pinyin2.&#39;</span>&#39;;
            echo &#39;<br>&#39;;
            echo &#39;首字母只包括汉字: <span class="red">&#39;.$pinyin3.&#39;</span>&#39;;
            echo &#39;<br>&#39;;
            echo &#39;首字母和其他字符: <span class="red">&#39;.$pinyin4.&#39;</span>&#39;;
            echo &#39;<br>&#39;;
            exit;
 
        }
        $this->display(&#39;pinyin&#39;);
    }
Copy after login

以上例子为thinkphp框架下的

实例效果:汉子转拼音带音标

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

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

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles