0

データを印刷するための物理TXTファイルを作成せずに、動的コンテンツを印刷する方法を理解しようとしています。

言い換えれば、私はmytext.phpコンテンツを呼び出して書き出している...mytext.php次のようになります:

<?php echo "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.";

そして、PDFはテキスト内の文字通りすべてで生成されます...だから<?php echo "Lorem..."

動的コンテンツを印刷するための最良の方法は何ですか?

4

1 に答える 1

0

私が通常行うことは、pdfを生成するスクリプト内から動的コンテンツを組み立てることです(ポスト変数を使用してデータベースにクエリを実行します...)。

それが必要なく、呼び出している php スクリプトがプレーン テキストを出力する場合は、出力バッファリングを使用できます。

答えを保持しているここで既に尋ねられた質問があります: Read echo'ed output from another php file

したがって、基本的には、出力を変数に入れ、FPDF Write、Cell、または Multicell-function を使用して、pdf 内に配置します。

于 2012-08-10T21:32:00.367 に答える