PHP 8.5.0 Alpha 1 available for testing

Voting

: max(seven, nine)?
(Example: nine)

The Note You're Voting On

j dot patus at simpledino dot com
8 years ago
In case the command:

$sftpStream = @fopen('ssh2.sftp://'.$sftp.$dstFile, 'w');

causes you a segmentation fault, try using:

$sftpStream = @fopen('ssh2.sftp://'.intval($sftp).$dstFile, 'w');

Credit: http://stackoverflow.com/questions/7414175/php-sftp-seg-fault

<< Back to user notes page

To Top