PHP Chinese vertical conversion program
本篇文章主要介绍PHP中文竖排转换程序,感兴趣的朋友参考下,希望对大家有所帮助。
效果图
index.php内容
<?php include('ccw.inc.php'); if (isset($_POST['string'])){ $ccw = new CCW; $converd = $ccw->convert($_POST['string']); } ?> <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>
ccw.inc.php文件内容:
<?php /** * 转换中文字符串至古文排版 */ class CCW { protected $SEPARATOR = '┆'; protected $BLANK = ' '; protected $CHARLIST = array( '0' => '0', '1' => '1', '2' => '2', '3' => '3', '4' => '4', '5' => '5', '6' => '6', '7' => '7', '8' => '8', '9' => '9', 'a' => 'a', 'b' => 'b', 'c' => 'c', 'd' => 'd', 'e' => 'e', 'f' => 'f', 'g' => 'g', 'h' => 'h', 'i' => 'i', 'j' => 'j', 'k' => 'k', 'l' => 'l', 'm' => 'm', 'n' => 'n', 'o' => 'o', 'p' => 'p', 'q' => 'q', 'r' => 'r', 's' => 's', 't' => 't', 'u' => 'u', 'v' => 'v', 'w' => 'w', 'x' => 'x', 'y' => 'y', 'z' => 'z', 'A' => 'A', 'B' => 'B', 'C' => 'C', 'D' => 'D', 'E' => 'E', 'F' => 'F', 'G' => 'G', 'H' => 'H', 'I' => 'I', 'J' => 'J', 'K' => 'K', 'L' => 'L', 'M' => 'M', 'N' => 'N', 'O' => 'O', 'P' => 'P', 'Q' => 'Q', 'R' => 'R', 'S' => 'S', 'T' => 'T', 'U' => 'U', 'V' => 'V', 'W' => 'W', 'X' => 'X', 'Y' => 'Y', 'Z' => 'Z', '(' => '︵', ')' => '︶', '[' => '︻', ']' => '︼', '{' => '︷', '}' => '︸', '<' => '︽', '>' => '︾', '*' => '*', '&' => '&', '^' => '︿', '%' => '%', '$' => '$', '#' => '#', '@' => '@', '!' => '!', '~' => '~', '`' => '`', '+' => '+', '-' => '-', '=' => '=', '_' => '_', '|' => '|', '\\' =>'\', '\'' =>''', '"' => '"', ';' => ';', ':' => ':', '.' => '.', ',' => ',', '?' => '?', '/' => '/', ' ' => ' ', '(' => '︵', ')' => '︶', '【' => '︻', '】' => '︼', '《' => '︽', '》' => '︾' ); public $height = 10; // 默认竖排高度 /** * 转换文字到竖排 * * @return string */ function convert($original, $height = null) { $original = preg_replace('/\s/', '', $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; } } ?>
总结:以上就是本篇文的全部内容,希望能对大家的学习有所帮助。
相关推荐:
php使用number_format函数截取小数的方法及实例分析
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!

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

AI Hentai Generator
Generate AI Hentai for free.

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

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

This is the second and final part of the series on building a React application with a Laravel back-end. In the first part of the series, we created a RESTful API using Laravel for a basic product-listing application. In this tutorial, we will be dev

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

In this article, we're going to explore the notification system in the Laravel web framework. The notification system in Laravel allows you to send notifications to users over different channels. Today, we'll discuss how you can send notifications ov

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot
