Simple example of generating word file with php
Release: 2016-07-25 09:04:05
Original
1002 people have browsed it
-
-
- /**
- php generates word files
- link: bbs.it-home.org
- */
- $word = new COM("word.application") or die("Cannot start Word program!"); p>
$word->Visible = 0;
$n=$word->Documents->Add();
- < p>## Section symbol
- $n->Sections->Add($word->Selection->Range,0);
## Sections(1) A section
- $s1=$n->Sections(1);
- $s1->PageSetup->BottomMargin=10;
## Paragraphs(1) The first paragraph
- $ s1->Range->InsertBefore("The First Year of the Penguin Empire-Poem Typesetting Test");
- $s1->Range->InsertParagraphAfter;
- $s1->Range->InsertBefore("Big Title-Poems and Songsn");
$Para=$n->Paragraphs(1);
- $Para->Alignment=1;
- $font_style=$Para-> ;Range;
- $font_style->Font->size =14;
- $font_style->Font->Name=" Standard Kai style";
$Para=$n- >Paragraphs(2);
- $Para->Alignment=2;
- $font_style=$Para->Range;
- $font_style->Font->size =10;
- $font_style->Font- >Name="New detailed style";
$p=$n->Sections(2);
- $obj=$p->PageSetup;
- $Col=$ obj->TextColumns;
- $Col->SetCount(2);
$p->Range->InsertAfter("
- Xi Murong
- < p>Like a seed blown by the wind
- I think I may have lost my way
- This world is definitely not
- the blueprint once promised to me
But there are already my tears
- Find your original self and get out of the crowd
- Sprinkled on the mountain path already
- My dreams in the dark night are growing in the forest
- My desire and my love
- Bloomed like a flower and then disappeared
-
And in the fragrant shadow by the water
- still retains my innocent heart
retains all my
- hesitant and fearful but unable to change
- footprints p>
Jijiang Jiancha Su Shi
The living fire is still cooking in the living water
- Since the fishing stone is deep and clear
- The big ladle is stored in the moon and returned to the spring urn
- The small ladle is divided into the river and put into the night vase
- The snow milk has been fried for the feet
- The pine wind suddenly makes the sound of diarrhea
- Withered intestines are not easy to restrain three bowls
- The length of the lying tree in the deserted city is updated
Two cups of tea Bai Juyi
-
After eating, I woke up
- got up with two cups of tea
- raised my head to see the shadow of the sun
- has returned to the southwest slope
- Happy people cherish the daily rush
- worried about people and tired of old age
- Carefree and joyless people
- Long and short life span
Shanquan Jiancha has Bai Juyi
Sit and drink the cold water
- Watch the decoction and dust the dust
- I can’t help but hold a bowl
- Send it to the tea lovers
Tea
- geranium leaf buds
- Mu Shike loves the monk's house
- carved white jade and woven red gauze
- fried astragalus color bowl turning Quchen The Queen of Flowers
- invites you to accompany the bright moon in the morning, facing the morning glow
- to wash away the past and present. People will never tire of knowing how to praise after being drunk
");
$ word->DefaultSaveFormat=""; ## Archive mode, default DOC
- $word->Documents[1]->SaveAs("c:\word.doc");
- $word->Quit( );
- $word->Release();
- $word = null;
- ?>
-
Copy code
|
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
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31