Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
Filesystem
File
WriteInterface.php
Go to the documentation of this file.
1
<?php
6
namespace
Magento\Framework\Filesystem\File
;
7
12
interface
WriteInterface
extends
ReadInterface
13
{
21
public
function
write
(
$data
);
22
32
public
function
writeCsv
(array
$data
, $delimiter =
','
, $enclosure =
'"'
);
33
40
public
function
flush
();
41
48
public
function
lock
($lockMode = \LOCK_EX);
49
55
public
function
unlock
();
56
}
Magento\Framework\Filesystem\File\WriteInterface\flush
flush()
Magento\Framework\Filesystem\File\WriteInterface\lock
lock($lockMode=\LOCK_EX)
Magento\Framework\Filesystem\File\WriteInterface\unlock
unlock()
Magento\Framework\Filesystem\File
Definition:
Read.php:7
$data
$data
Definition:
attribute_set_with_image_attribute.php:16
Magento\Framework\Filesystem\File\WriteInterface
Definition:
WriteInterface.php:12
Magento\Framework\Filesystem\File\ReadInterface
Definition:
ReadInterface.php:12
Magento\Framework\Filesystem\File\WriteInterface\write
write($data)
Magento\Framework\Filesystem\File\WriteInterface\writeCsv
writeCsv(array $data, $delimiter=',', $enclosure='"')