CakeFest 2024: The Official CakePHP Conference

ps_open_file

(PECL ps >= 1.1.0)

ps_open_fileOpens a file for output

说明

ps_open_file(resource $psdoc, string $filename = ?): bool

Creates a new file on disk and writes the PostScript document into it. The file will be closed when ps_close() is called.

参数

psdoc

Resource identifier of the postscript file as returned by ps_new().

filename

The name of the postscript file. If filename is not passed the document will be created in memory and all output will go straight to the browser.

返回值

成功时返回 true, 或者在失败时返回 false

参见

add a note

User Contributed Notes 1 note

up
-19
php at catchall dot toao dot net
14 years ago
Today, I used this function and did not specify a path to the file name. The file was created in C:\Program Files\Apache2.2 instead of the current working directory. When using this function, be sure to specify the full path to the file that should be created.
To Top