PHP 8.5.0 Beta 1 available for testing

Voting

: min(six, four)?
(Example: nine)

The Note You're Voting On

Anonymous
17 years ago
The below example doesn't seem to work on a windows based machine so I use this trick instead

<?php

$aPath
= explode('/',ftp_pwd($conn_id));
$sHomeDir = str_repeat('../', count($aPath) - 1);

ftp_chdir($conn_id, $sHomeDir);

?>

<< Back to user notes page

To Top