feat: 项目基础框架+配置+Kernel
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
|
||||
include 'ChinesePinyin.class.php';
|
||||
|
||||
$Pinyin = new ChinesePinyin();
|
||||
$words = '汉字转成拼音类';
|
||||
/*
|
||||
$words = '汉字转成拼音类';
|
||||
echo '<h2>'.$words.'</h2>';
|
||||
|
||||
|
||||
|
||||
echo '<p>转成带有声调的汉语拼音<br/>';*/
|
||||
echo $result = $Pinyin->TransformWithTone($words);
|
||||
/*echo $result,'</p>';
|
||||
|
||||
|
||||
|
||||
echo '<p>转成带无声调的汉语拼音<br/>';
|
||||
$result = $Pinyin->TransformWithoutTone($words,' ');
|
||||
echo($result),'</p>';
|
||||
|
||||
|
||||
|
||||
echo '<p>转成汉语拼音首字母<br/>';
|
||||
$result = $Pinyin->TransformUcwords($words);
|
||||
echo($result),'</p>';*/
|
||||
Reference in New Issue
Block a user