PHP 8.5.0 Alpha 4 available for testing

Voting

: min(zero, nine)?
(Example: nine)

The Note You're Voting On

gbti at ukr dot net
16 years ago
if you try:

<?php
$zip
->open("file", ZipArchive::CREATE);
$zip->addFromString("russian_letters/options.xml");
?>

wrong directory will be created.

if you try:

<?php
$zip
->addEmptyDir("russian_letters");
?>

All be fine.

<< Back to user notes page

To Top