php uses phpword to generate word documents:
Related recommendations: PHPWord Chinese user manual download
<p> <?php require_once '../libs/PHPWord/PHPWord.php'; require_once '../libs/PHPWord/PHPWord/IOFactory.php'; require_once '../../config.php'; // require_once '../common/conn.php';</p> <p>// New Word Document $PHPWord = new PHPWord();</p> <p>/**********文本格式的word text.php************/ // New portrait section</p> <p>//逗号 分割字符串 $arr = $_REQUEST['arr']; $a = explode(',',$arr); //echo $arr; date_default_timezone_set("Asia/Shanghai");//设置一个时区 $tm=date('Y-m-d H:i:s'); //exit($tm); /**********前多日雨量*********/ if(in_array('1', $a, TRUE)){ $section = $PHPWord->createSection(); $PHPWord->addFontStyle('rStyle', array('bold'=>false, 'italic'=>false, 'size'=>16)); $PHPWord->addParagraphStyle('pStyle', array('align'=>'center', 'spaceAfter'=>100)); $c = "前三日雨量报表"; $section->addText($c, 'rStyle', 'pStyle');</p> <p>$styleTable = array('borderSize'=>6, 'borderColor'=>'006699', 'cellMargin'=>80); $styleFirstRow = array('borderBottomSize'=>18, 'borderBottomColor'=>'0000FF', 'bgColor'=>'66BBFF');</p> <p>// Define cell style arrays $styleCell = array('valign'=>'center'); // Define font style for first row $fontStyle = array('bold'=>true, 'align'=>'center'); //设置标题 $PHPWord->addFontStyle('rStyle', array('bold'=>true, 'italic'=>true, 'size'=>16)); $PHPWord->addParagraphStyle('pStyle', array('align'=>'center', 'spaceAfter'=>100));</p> <p>// Add table style $PHPWord->addTableStyle('myOwnTableStyle', $styleTable, $styleFirstRow);</p> <p>// Add table $table = $section->addTable('myOwnTableStyle');</p> <p>// Add row设置行高 $table->addRow(500);</p> <p>$table->addCell(2300, $styleCell)->addText('站码', $fontStyle); $table->addCell(2300, $styleCell)->addText('站名', $fontStyle); $table->addCell(2300, $styleCell)->addText('雨量', $fontStyle); $table->addCell(2300, $styleCell)->addText('水文站监测类型', $fontStyle);</p> <p>$conn = mssql_connect($config['mssql']['host'],$config['mssql']['user'],$config['mssql']['password']); mssql_select_db($config['mssql']['dbname'],$conn);</p> <p>$stm = date('Y-m-d H:i:s',strtotime('-3 days')); $sql = "EXEC HNOW05_GETPPSPACE '','','".$stm."',1,1"; $res=mssql_query($sql);</p> <p>while($arr = mssql_fetch_array($res)){ //echo $arr["STCD"]."</br>"; $table->addRow(); $table->addCell(2300)->addText($arr["STCD"]); $table->addCell(2300)->addText($arr["STNM"]); $table->addCell(2300)->addText($arr["P"]); if($arr["STTP"] == 'MM'){ $table->addCell(2300)->addText('气象站'); }else if($arr["STTP"] == 'BB'){ $table->addCell(2300)->addText('蒸发站'); }else if($arr["STTP"] == 'DD'){ $table->addCell(2300)->addText('堰闸水文站'); }else if($arr["STTP"] == 'TT'){ $table->addCell(2300)->addText('落潮位站'); }else if($arr["STTP"] == 'DP'){ $table->addCell(2300)->addText('泵站'); }else if($arr["STTP"] == 'SS'){ $table->addCell(2300)->addText('墒情站'); }else if($arr["STTP"] == 'PP'){ $table->addCell(2300)->addText('雨量站'); }else if($arr["STTP"] == 'ZZ'){ $table->addCell(2300)->addText('河道水位水文站'); }else if($arr["STTP"] == 'RR'){ $table->addCell(2300)->addText('水库水文站'); }else if($arr["STTP"] == 'ZG'){ $table->addCell(2300)->addText('地下水站'); }else if($arr["STTP"] == 'ZB'){ $table->addCell(2300)->addText('分洪水位站'); } } $section->addTextBreak(2); }else{</p> <p>}</p> <p>/******地质灾害*******/ if(in_array('3', $a, TRUE)){ $section = $PHPWord->createSection(); $PHPWord->addFontStyle('rStyle', array('bold'=>false, 'italic'=>false, 'size'=>16)); $PHPWord->addParagraphStyle('pStyle', array('align'=>'center', 'spaceAfter'=>100)); $c = "地质灾害"; $section->addText($c, 'rStyle', 'pStyle');</p> <p>$content="根据市气象局未来24小时降雨预报和市水利局实时降雨数据,市国土资源局进行了地质灾害预报, 请有关部门关注</p> <p>实时预警信息,做好地质灾害防范工作"; $section->addText($content); // Add image elements $section->addImage("images/image001.jpg", array('width'=>600, 'height'=>480, 'align'=>'center')); }else{</p> <p>} // Save File $fileName = "word报表".date("YmdHis"); header("Content-type: application/vnd.ms-word"); header("Content-Disposition:attachment;filename=".$fileName.".docx"); header('Cache-Control: max-age=0'); $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007'); $objWriter->save('php://output'); ?> </p>
The above is the content of php using phpword to generate word documents. For more related content, please pay attention to the PHP Chinese website (www. php.cn)!
Related articles:
How to export and generate word from php
Generate a word document from a web page in a php program and provide downloadable example code

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python are both high-level programming languages that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values and handle functions that may return null values.


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

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Mac version
God-level code editing software (SublimeText3)

SublimeText3 English version
Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.