PHP Doku:: Returns whether phar extension supports writing and creating phars - phar.canwrite.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzErweiterungen zur Datenkompression und ArchivierungPharThe Phar classPhar::canWrite

Ein Service von Reinhard Neidl - Webprogrammierung.

The Phar class

<<Phar::canCompress

Phar::compress>>

Phar::canWrite

(PHP >= 5.3.0, PECL phar >= 1.0.0)

Phar::canWriteReturns whether phar extension supports writing and creating phars

Beschreibung

bool Phar::canWrite ( void )

This static method determines whether write access has been disabled in the system php.ini via the phar.readonly ini variable.

Parameter-Liste

Rückgabewerte

TRUE if write access is enabled, FALSE if it is disabled.

Beispiele

Beispiel #1 A Phar::canWrite() example

<?php
if (Phar::canWrite()) {
    
file_put_contents('phar://myphar.phar/file.txt''hi there');
}
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)