PHP Chinese vertical conversion program

墨辰丷
Release: 2023-03-30 10:14:01
Original
1791 people have browsed it

本篇文章主要介绍PHP中文竖排转换程序,感兴趣的朋友参考下,希望对大家有所帮助。

效果图

index.php内容

<?php 
include(&#39;ccw.inc.php&#39;); 
 
if (isset($_POST[&#39;string&#39;])){ 
 $ccw = new CCW; 
 $converd = $ccw->convert($_POST[&#39;string&#39;]); 
} 
?> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
<form method="post" charset="utf-8"> 
 <p><?php echo $converd ?></p> 
 <p><textarea name="string" cols="50" rows="10"></textarea></p> 
 <p><input type="submit" /></p> 
</form>
Copy after login

ccw.inc.php文件内容:

<?php 
/** 
 * 转换中文字符串至古文排版 
 */ 
class CCW { 
 protected $SEPARATOR = &#39;┆&#39;; 
 protected $BLANK = &#39; &#39;; 
 protected $CHARLIST = array( 
 &#39;0&#39; => &#39;0&#39;, &#39;1&#39; => &#39;1&#39;, &#39;2&#39; => &#39;2&#39;, &#39;3&#39; => &#39;3&#39;, &#39;4&#39; => &#39;4&#39;, &#39;5&#39; => &#39;5&#39;, 
 &#39;6&#39; => &#39;6&#39;, &#39;7&#39; => &#39;7&#39;, &#39;8&#39; => &#39;8&#39;, &#39;9&#39; => &#39;9&#39;, &#39;a&#39; => &#39;a&#39;, &#39;b&#39; => &#39;b&#39;, 
 &#39;c&#39; => &#39;c&#39;, &#39;d&#39; => &#39;d&#39;, &#39;e&#39; => &#39;e&#39;, &#39;f&#39; => &#39;f&#39;, &#39;g&#39; => &#39;g&#39;, &#39;h&#39; => &#39;h&#39;, 
 &#39;i&#39; => &#39;i&#39;, &#39;j&#39; => &#39;j&#39;, &#39;k&#39; => &#39;k&#39;, &#39;l&#39; => &#39;l&#39;, &#39;m&#39; => &#39;m&#39;, &#39;n&#39; => &#39;n&#39;, 
 &#39;o&#39; => &#39;o&#39;, &#39;p&#39; => &#39;p&#39;, &#39;q&#39; => &#39;q&#39;, &#39;r&#39; => &#39;r&#39;, &#39;s&#39; => &#39;s&#39;, &#39;t&#39; => &#39;t&#39;, 
 &#39;u&#39; => &#39;u&#39;, &#39;v&#39; => &#39;v&#39;, &#39;w&#39; => &#39;w&#39;, &#39;x&#39; => &#39;x&#39;, &#39;y&#39; => &#39;y&#39;, &#39;z&#39; => &#39;z&#39;, 
 &#39;A&#39; => &#39;A&#39;, &#39;B&#39; => &#39;B&#39;, &#39;C&#39; => &#39;C&#39;, &#39;D&#39; => &#39;D&#39;, &#39;E&#39; => &#39;E&#39;, &#39;F&#39; => &#39;F&#39;, 
 &#39;G&#39; => &#39;G&#39;, &#39;H&#39; => &#39;H&#39;, &#39;I&#39; => &#39;I&#39;, &#39;J&#39; => &#39;J&#39;, &#39;K&#39; => &#39;K&#39;, &#39;L&#39; => &#39;L&#39;, 
 &#39;M&#39; => &#39;M&#39;, &#39;N&#39; => &#39;N&#39;, &#39;O&#39; => &#39;O&#39;, &#39;P&#39; => &#39;P&#39;, &#39;Q&#39; => &#39;Q&#39;, &#39;R&#39; => &#39;R&#39;, 
 &#39;S&#39; => &#39;S&#39;, &#39;T&#39; => &#39;T&#39;, &#39;U&#39; => &#39;U&#39;, &#39;V&#39; => &#39;V&#39;, &#39;W&#39; => &#39;W&#39;, &#39;X&#39; => &#39;X&#39;, 
 &#39;Y&#39; => &#39;Y&#39;, &#39;Z&#39; => &#39;Z&#39;, &#39;(&#39; => &#39;︵&#39;, &#39;)&#39; => &#39;︶&#39;, &#39;[&#39; => &#39;︻&#39;, &#39;]&#39; => &#39;︼&#39;, 
 &#39;{&#39; => &#39;︷&#39;, &#39;}&#39; => &#39;︸&#39;, &#39;<&#39; => &#39;︽&#39;, &#39;>&#39; => &#39;︾&#39;, &#39;*&#39; => &#39;*&#39;, &#39;&&#39; => &#39;&&#39;, 
 &#39;^&#39; => &#39;︿&#39;, &#39;%&#39; => &#39;%&#39;, &#39;$&#39; => &#39;$&#39;, &#39;#&#39; => &#39;#&#39;, &#39;@&#39; => &#39;@&#39;, &#39;!&#39; => &#39;!&#39;, 
 &#39;~&#39; => &#39;~&#39;, &#39;`&#39; => &#39;`&#39;, &#39;+&#39; => &#39;+&#39;, &#39;-&#39; => &#39;-&#39;, &#39;=&#39; => &#39;=&#39;, &#39;_&#39; => &#39;_&#39;, 
 &#39;|&#39; => &#39;|&#39;, &#39;\\&#39; =>&#39;\&#39;, &#39;\&#39;&#39; =>&#39;'&#39;, &#39;"&#39; => &#39;"&#39;, &#39;;&#39; => &#39;;&#39;, &#39;:&#39; => &#39;:&#39;, 
 &#39;.&#39; => &#39;.&#39;, &#39;,&#39; => &#39;,&#39;, &#39;?&#39; => &#39;?&#39;, &#39;/&#39; => &#39;/&#39;, &#39; &#39; => &#39; &#39;, &#39;(&#39; => &#39;︵&#39;, 
 &#39;)&#39; => &#39;︶&#39;, &#39;【&#39; => &#39;︻&#39;, &#39;】&#39; => &#39;︼&#39;, &#39;《&#39; => &#39;︽&#39;, &#39;》&#39; => &#39;︾&#39; 
 ); 
 
 public $height = 10; // 默认竖排高度 
 
 /** 
 * 转换文字到竖排 
 * 
 * @return string 
 */ 
 function convert($original, $height = null) { 
 $original = preg_replace(&#39;/\s/&#39;, &#39;&#39;, $original); // 去除多余的空格等 
 $strarr = $this->mbStringToArray($original); // 分解成数组 
 $height = $height ? intval($height) : $this->height; 
 $total = sizeof($strarr); 
 $width = ceil($total / $height); 
 
 // 分割中文字符 
 $result = array(); 
 for ($i = 0, $tmp = array(); $i < $total; $i++) { 
 $c = $strarr[$i]; // 格式化当前字符 
 $tmp[] = isset($this->CHARLIST[$c]) ? $this->CHARLIST[$c] : $c; 
 if (sizeof($tmp) == $height) { 
 $result[] = $tmp; 
 $tmp = array(); 
 } 
 } 
 
 // 如果还有剩余的字符 
 if (sizeof($tmp)) { 
 $result[] = $tmp; 
 } 
 
 // 开始输出 
 $output = "<pre class="brush:php;toolbar:false">"; 
 for($j = 0; $j < $height; $j++) { 
 for ($i = $width - 1; $i >= 0; $i--) { 
 $output .= $this->SEPARATOR; 
 $output .= isset($result[$i][$j]) ? $result[$i][$j] : $this->BLANK; 
 } 
 $output .= $this->SEPARATOR; 
 $output .= "\n"; 
 } 
 
 return $output."
"; } /** * 转换字符串至数组 */ private function mbStringToArray ($string, $encoding = 'utf-8') { while ($strlen = mb_strlen($string)) { $array[] = mb_substr($string, 0, 1, $encoding); $string = mb_substr($string, 1, $strlen, $encoding); } return $array; } } ?>
Copy after login

总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。

相关推荐:

php使用number_format函数截取小数的方法及实例分析

php使用pdo连接sqlite3的配置方法详解

php实现通过文件头判断格式的方法

The above is the detailed content of PHP Chinese vertical conversion program. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!