feat: 项目基础框架+配置+Kernel

This commit is contained in:
testadmin
2026-04-29 05:35:00 +08:00
parent 6ce7adcbfb
commit 9a6151fce3
5082 changed files with 437062 additions and 0 deletions
@@ -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>';*/