Definition at line 30 of file File.php.
◆ __construct()
PHPExcel_Shared_OLE_PPS_File::__construct |
( |
|
$name | ) |
|
The constructor.
@access public
- Parameters
-
string | $name | The name of the file (in Unicode) |
- See also
- OLE::Asc2Ucs()
Definition at line 39 of file File.php.
40 {
41 parent::__construct(
42 null,
43 $name,
45 null,
46 null,
47 null,
48 null,
49 null,
50 '',
51 array());
52 }
References PHPExcel_Shared_OLE\OLE_PPS_TYPE_FILE.
◆ append()
PHPExcel_Shared_OLE_PPS_File::append |
( |
|
$data | ) |
|
Append data to PPS.
@access public
- Parameters
-
string | $data | The data to append |
Definition at line 71 of file File.php.
72 {
73 $this->_data .=
$data;
74 }
References $data.
◆ getStream()
PHPExcel_Shared_OLE_PPS_File::getStream |
( |
| ) |
|
Returns a stream for reading this file using fread() etc.
- Returns
- resource a read-only stream
Definition at line 80 of file File.php.
81 {
82 $this->ole->getStream($this);
83 }
◆ init()
PHPExcel_Shared_OLE_PPS_File::init |
( |
| ) |
|
Initialization method.
Has to be called right after OLE_PPS_File().
@access public
- Returns
- mixed true on success
Definition at line 60 of file File.php.
61 {
62 return true;
63 }
The documentation for this class was generated from the following file:
- libs/composer/vendor/phpoffice/phpexcel/Classes/PHPExcel/Shared/OLE/PPS/File.php